Template.temp.events({
"focusOut window" : function(){
console.log('exit window')
}
});
喜欢这个focusOut
窗口触发器代码吗?
答案 0 :(得分:0)
不确定这是否有效,因为模板只会在其自己的范围内列出dom事件。
最好使用jquery处理此问题,并在呈现模板时设置事件侦听器。
Template.temp.onRendered(function() {
Meteor.setTimeout(function(){
$(window).blur(function() {
// Do something here....
$("title").text("Don't forget to read this..." + pageTitle);
});
}, 1000);
}
这些方面的东西应该有用,它很脆弱......可能需要一些调整,但这应该让你开始。