HTML DOM hostname 属性
定义和用法
hostname 属性是一个可读可写的字符串,可设置或返回当前 URL 的主机名。
语法
- location.hostname
实例
假设当前的 URL 是: http://example.com:1234/test.htm#part2:
- <html>
- <body>
- <script type="text/javascript">
- document.write(location.hostname);
- </script>
- </body>
- </html>
输出:
- example.com