让我说我的网址是:
http://example.com的 / 12434 /示例-交
我想检查当前网址是否包含"/"
之后的内容,换句话说,我不想检查我是否在主页http://example.com
这可以用jQuery吗?
答案 0 :(得分:8)
检查location
全局对象。它有pathname
property:
alert( location.pathname );
答案 1 :(得分:0)
window.location.href给出了页面的url。测试代码
alert(window.location.href);
URL是否包含abc.com/xyz之类的内容,即xyz可以使用以下代码进行测试;
var url= window.location.href;
if(url.split("/").length>3){
// It is not the home page. It is not xyz.com. It has something after /
}
else{
// you are on the home page.
}