获取当前网页的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区别总结
- reactjs-nginx尝试根据uri在目录中查找index.html 2023-10-25
- clip 剪裁矩形实现代码 2024-01-06
- 使用JS前端技术实现静态图片局部流动效果 2022-10-21
- php – 将mySQL记录显示为HTML表格列 2023-10-26
- js判断是否按下了Shift键的方法 2023-12-26
- Linux 服务器 安装raml2html 管理API文档 raml 2023-10-25
- 解决 Django 渲染模板 与 Vue {{ }} 冲突 2023-10-08
- 浅谈async、defer以普通script加载的区别 2023-07-09
- Vue vue.config.js 的详解与配置 2023-10-08
- layer.open获取弹出层(子集iframe)中的元素或参数 2022-10-05