如何判斷一個window.location.href
?js如果window.location.href不匹配,那麼跳轉到
如果window.location.href
不匹配?search=
,使當前的URL跳轉到http://localhost/search?search=car
我的代碼無法工作,或者我應該使用indexOf
,使法官?謝謝。
if(!window.location.href.match('?search='){
window.location.href = 'http://localhost/search?search=car';
}
你缺少一個')' – Neal