gpt4 book ai didi

javascript - 如何为 meteor 中的动态按钮编写 onclick 功能

转载 作者:行者123 更新时间:2023-11-28 05:10:27 26 4
gpt4 key购买 nike

 <template name="actionTemplate">

{{#each action}}

<button class="myButton" id={{_id}}>btn</button>

{{> action}}
{{/each}}
</template>


<template name="action">
<div class="sct" id={{_id}}>
some text has to display
</div>
</template>

对于上面的行,我该如何编写点击函数来隐藏“btn”按钮。

最佳答案

如果你的模板名为actionTemplate,你应该编写一个事件函数

Template.actionTemplate.events({
"click .myButton" : function(event){
var id= event.currentTarget.id;
$('#'+id).hide();
});

这应该可以完成工作。

关于javascript - 如何为 meteor 中的动态按钮编写 onclick 功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39591371/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com