如果当前网址没有包含location.search重定向到主页

时间:2015-01-11 11:12:57

标签: javascript jquery contains window.location

想要检查当前网址是否包含location.search在加载页面之前重定向到主页

搜索页面的搜索位置必须为:example.com/s/page.html?search=some+query

var home = "example.com",
searchpage="example.com/s/page.html";

检查当前页面网址是否加载

example.com/s/page.html

没有?search=some+query重定向到主页

如何在javascript / jquery中翻译“不包含”

 var search = window.location.search;
  if(window.location.href!=search) {
window.location.href=home;
});

我知道那是错的

希望在页面加载内容之前重定向

thanx很多提前

1 个答案:

答案 0 :(得分:1)

你可以试试这个:

var curLocation= location.href;

if(curLocation.search("search") >= 0 ) {
     window.location.href=home;
};

JS FIDDLE