如何利用JS判断当前来路域名并跳转到指定页面

2024-11-08 00:19:03
推荐回答(1个)
回答(1):

获取当前请求路径
var href = location.href ;
if(href.indexOf("baidu")>-1){
//跳转

location.href = "http://baidu.com";
}