我有一个计数器,当窗口聚焦时倒计时,当窗口模糊时停止计数。
我的代码与 Firefox 和 IE 完美配合,因为使用 FF 或 IE,在加载文档时会触发 focus() 事件。
但在 Safari/Chrome 中却不是。
有谁知道我如何在使用 Safari/Chrome 加载时触发 countDown() 函数?非常感谢
我的代码有这样的结构:
$(document).ready(function(){
$(window).focus(function(){
countDown();
});
$(window).blur(function(){
stopCount();
});
});