HTML DOM domain 屬性
定義和用法
domain 屬性可返回下載當前文檔的服務器域名。
語法
document.domain
說明
該屬性是一個只讀的字符串,包含了載入當前文檔的 web 服務器的主機名。
實例
<html>
<body>
The domain name for this document is:
<script type="text/javascript">
document.write(document.domain
)
</script>
</body>
</html>