1

以如下页面为例:

http://www.example.com/Page.asp?Page=关于

使用 JavaScript,我如何检查窗口的位置是否包含?Page=About

这是我到目前为止的代码,但我似乎无法让它工作。

$(document).ready(function(){
if ($(window.location:contains('?Page=About')").length !== 0) 
{
alert("Currently on About page");
}
else {
}
});

请帮忙 :)

谢谢

4

1 回答 1

2

使用.indexOf() 代替contains

if ( window.location.href.indexOf('?Page=About') > -1) 

window.location包含 Location 对象。href 属性包含url

检查小提琴

于 2013-07-11T00:16:46.193 回答