setTimeout(function(){
console.log("11");
},300);
window.location.href="https://www.bai.com";
请问一下,跳转(window.location.href)是等定时器里执行后才跳转?还是不等待定时器事件执行直接跳转?还是跳转后再执行定时器?还是跳转后不执行定时器?
console.log("11");
},300);
window.location.href="https://www.bai.com";
请问一下,跳转(window.location.href)是等定时器里执行后才跳转?还是不等待定时器事件执行直接跳转?还是跳转后再执行定时器?还是跳转后不执行定时器?