本文介绍了如何在 Meteor 1.0 中使用 jQuery的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图在meteor.js 应用程序中使用这样的jquery.
I am trying to use jquery like this in meteor.js app.
JS:
if (Meteor.isClient) {
Meteor.startup(function() {
$( "button" ).click(function() {
$( "p" ).toggle();
});
});
...
或者没有meteor.startup函数.两个都不行.
Or without meteor.startup function. Neither works.
HTML:
<button>Click</button>
<p>Can you see me?</p>
我没有遇到任何错误,单击按钮时也没有任何反应.
I get no errors and nothing happens when I click the button.
推荐答案
你不应该使用 jQuery 来处理这样的简单事件,而是使用 Meteor 模板事件映射:
You shouldn't use jQuery for simple event handling like this, use Meteor templates event maps instead :
HTML:
<template name="myTemplate">
<button type="button">Click me !</button>
<p>Can you see me ?</p>
</template>
JS:
Template.myTemplate.events({
"click button":function(event, template){
template.$("p").toggle();
}
});
这篇关于如何在 Meteor 1.0 中使用 jQuery的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!