如果URL包含单词“hello”,则从URL中删除“hello”并重定向。怎么可能?例如:
在页面加载时,我想检查是否找到“hello”,然后执行:
window.location.href = 'http://www.google.com';
提前致谢
答案 0 :(得分:2)
这里不需要jquery:
window.onload = function(){
if(location.href.indexOf('hello') > -1){
location.href = location.href.replace(/hello/,'www');
}
};
答案 1 :(得分:1)
if (url.match(/hello/)) {
window.location.href = url.replace(/hello/, 'www');
}