gpt4 book ai didi

javascript - 如何在点击 meteor 时更改图标

转载 作者:太空宇宙 更新时间:2023-11-04 02:17:35 25 4
gpt4 key购买 nike

在 meteor 中,我试图更改单击时的图标更改(我使用 glyphicon 图标)以将收藏夹添加到列表中。我使用了 toggleClass()。但它不起作用,。在这里我附上我的代码。当我刷新页面时,图标没有改变。谁能帮我解决问题。HTML 代码:

<span class="glyphicon glyphicon-star-empty" style="color:green"></span>

和JS代码:

$(document).ready(function(){

$('.glyphicon').click(function(){
$(this).toggleClass('glyphicon-star-empty glyphicon-star');
});
});

最佳答案

这是你这样做的方式:

Template.TemplateName.events({
"click .glyphicon": function(event){
$(event.currentTarget).toggleClass('glyphicon-star-empty glyphicon-star');
});

关于javascript - 如何在点击 meteor 时更改图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38655250/

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