如何在Meteor 1.0中使用jQuery

前端之家收集整理的这篇文章主要介绍了如何在Meteor 1.0中使用jQuery前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在meteor.js应用程序中使用这样的 jquery.

JS:

if (Meteor.isClient) {      
    Meteor.startup(function() {
            $( "button" ).click(function() {
              $( "p" ).toggle();
            });
          });
...

或者没有meteor.startup函数.两者都不起作用.

HTML:

<button>Click</button>
<p>Can you see me?</p>

我没有错误,单击按钮时没有任何反应.

解决方法

您不应该像这样使用jQuery进行简单的事件处理,而是使用Meteor模板事件映射:

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();
  }
});
原文链接:https://www.f2er.com/jquery/179069.html

猜你在找的jQuery相关文章