Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设如果用户打开一个新选项卡,那么旧选项卡必须自动重定向到某个默认页面。
在排名表网站中,当用户正在编写考试时,如果他打开新标签,则考试将停止并且页面将被重定向到另一个页面。在 Java Script 中怎么可能
大概是这样的?
window.onblur = function(){ location.href="http://google.com"; window.onblur = ''; }