在 Meteor 中使用 Jquery $(this)
Posted
技术标签:
【中文标题】在 Meteor 中使用 Jquery $(this)【英文标题】:Using Jquery $(this) in Meteor 【发布时间】:2012-07-31 00:28:54 【问题描述】:如何在流星中使用这个功能?例如,我希望能够点击任何给定的
元素并找出它的类是什么。另外,我如何获取有关我使用 Meteor 点击的项目的信息?
【问题讨论】:
【参考方案1】:假设在代码的某处你有一个模板处理事件:
Template.tmpl_name.events =
'click #logo': function (e)
// Instead of using $(this), you can do:
var $this = $(e.target);
// Your usual code here, e.g.:
console.log($this.attr('href'));
;
【讨论】:
以上是关于在 Meteor 中使用 Jquery $(this)的主要内容,如果未能解决你的问题,请参考以下文章
表单提交后 Jquery.validate() 不“重新加载”(meteor.js)
Meteor Startup JQuery DOM Elements Not Ready (JQueryUI Draggable)
Meteor 或 Iron Router 是不是会干扰锚标记上的 jQuery 事件?