使用jQuery检查URL上的“/”后面的内容

时间:2012-02-19 14:47:44

标签: javascript jquery url

让我说我的网址是:

  

http://example.com / 12434 /示例-交

我想检查当前网址是否包含"/"之后的内容,换句话说,我不想检查我是否在主页http://example.com

这可以用jQuery吗?

2 个答案:

答案 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.
}