亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM port 屬性

定義和用法

port 屬性是一個可讀可寫的字符串,可設置或返回當前 URL 的端口部分。

語法

location.port=portnumber

實例

假設當前的 URL 是: http://example.com:1234/test.htm#part2:

<html>
<body>

<script type="text/javascript">
document.write(location.port);
</script>

</body>
</html>

輸出:

1234