2013-06-27 46 views

回答

1
if (url.match(/hello/)) { 
    window.location.href = url.replace(/hello/, 'www'); 
} 
+0

Worke完美。真棒。謝謝! – MortenMoulder

2

無需對於jquery這裏:

window.onload = function(){ 
    if(location.href.indexOf('hello') > -1){ 
     location.href = location.href.replace(/hello/,'www'); 
    } 
};