如何在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();
  }
});