0

我想比较当前网页的 URL。我的第一个想法是使用 window.location.host :

if (window.location.host == example.com) {
    //code to be executed if condition is true
}

但这不起作用。还有其他想法吗?

哦,好吧,我对 javascript 的教育并不多。提前致谢。

4

1 回答 1

4

你可以按照你说的去做。请记住将字符串文字放在引号中。

if (window.location.host == "example.com") {
    //code to be executed if condition is true
}
于 2012-05-21T17:27:11.007 回答