比较网址的另一种方法是什么?这不起作用。自从我编码
以来,它已经很久了var myURL =
(window.location.href="http://randbox.blogspot.com/2014/01/test-0.html");
if ( alert(document.URL) == myURL ) {
答案 0 :(得分:0)
var myURL =
(window.location.href="http://randbox.blogspot.com/2014/01/test-0.html");
if ( document.URL == myURL ) {
删除alert()
功能。它与变量无法比较,因此它将返回false。
如果它仍然不起作用,document.URL可能不是您想要的,或者字符串不正确,或者两者都错了。