1. 程式人生 > >js 判斷登入之後,返回到上一個的頁面

js 判斷登入之後,返回到上一個的頁面

var ferrer = document.referrer;
if($.trim(ferrer)==”){
location.href = ‘index/index.html’;
}else{
if(ferrer.indexOf(‘/BaiMa’)==-1){ //來自其它站點
location.href = ‘index/index.html’;
}
location.href = ferrer;
}