Meteor,如何浏览选项卡选项?

时间:2017-08-12 20:38:26

标签: events meteor

Template.temp.events({
 "focusOut window" : function(){
  console.log('exit window')
 }
});

喜欢这个focusOut窗口触发器代码吗?

1 个答案:

答案 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);
}

这些方面的东西应该有用,它很脆弱......可能需要一些调整,但这应该让你开始。