1

如果 URL 包含单词“hello”,则从 URL 中删除“hello”并重定向。这怎么可能?例子:

http://hello.google.com/

在页面加载时,我想检查是否找到“hello”,然后执行以下操作:

window.location.href = 'http://www.google.com';

提前致谢

4

2 回答 2

2

这里不需要jquery:

window.onload = function(){
    if(location.href.indexOf('hello') > -1){
        location.href = location.href.replace(/hello/,'www');
    }
};
于 2013-06-27T22:13:14.217 回答
1
if (url.match(/hello/)) {
    window.location.href = url.replace(/hello/, 'www');
}
于 2013-06-27T22:12:24.060 回答