如何在Meteor 1.0中使用jQuery [英] How to use jQuery in Meteor 1.0

查看:44
本文介绍了如何在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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆