如何在 Meteor 1.0 中使用 jQuery

编程入门 行业动态 更新时间:2024-10-19 11:43:21
本文介绍了如何在 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

本文发布于:2023-11-14 19:45:11,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1588354.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:如何在   Meteor   jQuery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!