欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM pathname 屬性

定義和用法

pathname 屬性是一個(gè)可讀可寫的字符串,可設(shè)置或返回當(dāng)前 URL 的路徑部分。

語法

location.pathname=path

實(shí)例

假設(shè)當(dāng)前的 URL 是: http://example.com:1234/test/test.htm#part2:

<html>
<body>

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

</body>
</html>

輸出:

/test/test.htm