如果在方法有如下调用,实现页面跳转
function f(){
fn();
callotherMethod();
}
function fn(){
.....
if(condition){
window.location = xxx.html;
//这地方应该加入什么方法,终止后面所有js方法的执行?
}
otherMethod();
}
请高手赐教,不胜感激。
return;
你确认 执行window.location = xxx.html; 这个时候后面的js还在继续执行吗