meteor.js

作者: 煮茶听雨 | 来源:发表于2018-03-08 22:25 被阅读0次
Template.hello.events({
  'click button' : function(event,tpl){...}
});

Template.hello : 模板实例
Template.hello.events(eventMap)为hello模板中的dom对象绑定事件,参数eventMap是一个JS对象,属性表示要处理的事件,值表示事件处理函数
事件处理函数的参数:event表示DOM事件对象, 而tpl则代表触发事件的DOM对象所属的模板实例
通过tpl对象的jQuery 操作符可以轻松地进行DOM操作

Template.hello.events({
  'click button#changetext':function(event,tpl){
      tpl.$("input").text("what are you doing!");
  }
});

相关文章

  • meteor.js

    Template.hello : 模板实例Template.hello.events(eventMap)为hell...

  • iOS 接入 Meteor DDP

    背景 由于后端采用 meteor.js 进行开发,移动端适配方案很容易让人想到 web app 的开发模式。但这种...

  • Meteor.js 基础与最佳实践

    引言 想知道这个新奇又好玩的东西---Meteor是如何工作的?那就太好了,你来对地方了. 我会向你展示一个Met...

网友评论

      本文标题:meteor.js

      本文链接:https://www.haomeiwen.com/subject/wjjufftx.html