我想检查当前网址,如果它不是主页,我想使用jQuery或AngularJS将该网页重定向到特定的网址
答案 0 :(得分:0)
<强> [角] 强> 请尝试以下代码行:
var location = $location.path();
location = location.slice(1, location.indexOf("/"));
location = location.toLowerCase();
if (location != 'home') {
$location.path('/redirect/somewhere');
}
答案 1 :(得分:0)
为此你不需要jQuery或AngularJS,简单的JS就足够了。
location.href 也是如此。
例如:
if(location.href != home_page_URL)
location.href = new_page_URL;