document.URL

收藏:0   阅读:39

HTML DOM URL Property


定义和用法

URL 属性可返回当前文档的 URL。

语法

document.URL


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 URL 属性


实例

返回当前文档的完整URL:

<html>
<body>

The full URL of this document is:
<script>
document.write(document.URL);
</script>

</body>
</html>

© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!