当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM URL 属性
The URL property returns the URL of the current document.
URL属性可以返回当前文档的URL
document.URL |
<html> <body> 文档的URL为 <script type="text/javascript"> document.write(document.URL) </script> </body> </html> |
Return the URL of a document
返回文档的URL