返回到:JavaScript对象:JavaScript Location 对象
定义和用法
href 属性是一个可读可写的字符串,可设置或返回当前显示的文档的完整 URL。
语法
location.href
所有主要浏览器都支持 href 属性
实例
返回完整的URL(当前页):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> </head> <body> <script> document.write(location.href); </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/brtips/3521.html