获取当前网页的URL是常见的前端操作,常用的方法有两种:document.URL和location.href。
获取当前网页的URL是常见的前端操作,常用的方法有两种:document.URL和location.href。
document.URL
document.URL
属性返回当前文档的URL。
它与 location.href
属性非常相似,但有一些细微的区别。 document.URL
是只读的,而 location.href
是可读可写的。
以下是一个返回具有document.URL
属性的完整示例:
<!doctype html>
<html>
<head>
<title>Document.URL Example</title>
</head>
<body>
<p>The current URL is: <script>document.write(document.URL)</script></p>
</body>
</html>
上述示例将在网页上显示当前URL。 这个URL会被写入一个段落标签中,使用JavaScript的 document.write() 方法直接写入该URL。
location.href
location.href
属性也返回当前文档的URL字符串。
但是,location.href
是一个可读写属性,这意味着您可以使用它来调整文档的URL。只需将新URL字符串分配给 location.href
即可。
以下是一个返回具有location.href
属性的完整示例:
<!doctype html>
<html>
<head>
<title>Location.Href Example</title>
</head>
<body>
<p>The current URL is: <script>document.write(location.href)</script></p>
<button onclick="location.href='https://www.google.com'">Go to Google</button>
</body>
</html>
上述示例中,一个按钮被添加,当按钮被单击时,将调用 location.href
将URL修改为https://www.google.com。
您可以使用两种方法之一来获取当前文档的URL。document.URL
方法是只读的,用于读取文档的URL。location.href
是可读写的,可以用于读取或写入文档的URL。
本文标题为:获取当前网页document.url location.href区别总结
基础教程推荐
- js判断鼠标位置是否在某个div中的方法 2023-11-30
- Immer 功能最佳实践示例教程 2024-02-08
- js实现当鼠标移到表格上时显示这一格全部内容的代码 2024-01-20
- HTML标签(上) 2023-10-28
- 浅谈JavaScript的对象类型之function 2023-07-10
- 网页布局入门教程 如何用CSS进行网页布局 2023-12-23
- HTML5打开手机扫码功能及优缺点 2022-09-16
- PDF转HTML工具——用springboot包装pdf2htmlEX命令行工具 2023-10-28
- css控制div鼠标放上去变色 2024-01-24
- javascript内嵌式与外链式的基本应用方式 2023-08-08