本文介绍了document.URL和location.href之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我知道 document.URL
无法设置,而 location.href
可以。
I know that document.URL
can not be set, while location.href
can.
但文档表示:
那么我们什么时候使用 document.URL
?
So when would we use document.URL
?
推荐答案
您可以获取文档。网址,但您无法设置。
您可以同时获取并设置 document.location.href
。
You can get the document.URL, but you can not set it.You can both get and set the document.location.href
.
在某些webbrowsers中,您可以设置 document.URL
但请不要,因为它在大多数浏览器中都不起作用。
In some webbrowsers, you are able to set the document.URL
but please don't, as it doesn't work in most browsers.
你自己给了答案!
var currentURL = document.URL;
alert(currentURL);
这篇关于document.URL和location.href之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!