Number of anchors in this document: <script type="text/javascript"> document.write(document.anchors.length) </script>
</body> </html>
显示当前所在服务器的地址
<html> <body>
The domain name for this site is: <script type="text/javascript"> document.write(document.domain) </script>
</body> </html>
显示当前页面的地址:
<html> <body>
<p>The referrer of a document is the URL of the document that linked to a document.</p>
The referrer of this document is: <script type="text/javascript"> document.write(document.referrer) </script>
<p>In this case it is a frame page that is linking to this document. IE returns the URL of the frame page and Netscape returns the URL of the document linking to this document.</p>
</body> </html>
显示当前文档的标题
<html> <head> <title>MY TITLE</title> </head>
<body> The title of the document is: <script type="text/javascript"> document.write(document.title) </script> </body>