<!DOCTYPE html>
<html>
<body>
<h2>JavaScript</h2>
<h3>window.locationオブジェクト</h3>
<p id="demo"></p>
<p><b>注:</b>ポート番号がデフォルト(httpの場合は80、httpsの場合は 443)の場合、ほとんどのブラウザでは0または何も表示されません。</p>
<script>
document.getElementById("demo").innerHTML =
"The URL port number of the current page is: " + window.location.port;
</script>
</body>
</html>