domain 属性可返回下载当前文档的服务器域:
document.domain
所有主要浏览器都支持 domain 属性
返回下载当前文档的服务器域名:
<html> <body> The domain name for the server that loaded this document: <script> document.write(document.domain); </script> </body> </html>