Location.port : Location « Location « JavaScript Tutorial






The port property represents the port portion of the URL. This normally follows the hostname, but is not always available.

http://www.java2s.com:8080/index.htm, the port is equal to 8080.

<html>
    <head>
    <title> Using the port property of the Location object</title>
    </head>
    <body>
    <script language="JavaScript">
    <!--
    function show(){
         alert(document.location.port);
    }
    -->
    </script>
    <form name="form1">
    Click the button to get the current location.port value of the following address:
    <br>
    http://www.java2s.com
    <br>
    <input type="button" name="getport" value="Get port" onClick='show()'>
    <br>
    </form>
    </body>
    </html>








16.1.Location
16.1.1.Location
16.1.2.Location.assign()
16.1.3.Location.hash
16.1.4.Location.host
16.1.5.Location.hostname
16.1.6.Location.href
16.1.7.Location.pathname
16.1.8.Location.port
16.1.9.Location.protocol
16.1.10.Location.reload() to reload from cache
16.1.11.Location.reload(true) to reload from the server
16.1.12.Location.reload(false) to reload from the cache
16.1.13.Location.replace()
16.1.14.Location.search
16.1.15.Location replace in action
16.1.16.Change location.href