gpt4 book ai didi

Jquery增加计数器

转载 作者:行者123 更新时间:2023-12-01 02:49:02 26 4
gpt4 key购买 nike

$('#fCount' + folderID).html(parseInt($('#fCount' + folderID).html()) + "E");

这可行,但无论我尝试什么,例如:

$('#fCount' + folderID).html(parseInt($('#fCount' + folderID).html())++);

不起作用! html 只是一个数字,例如 0 或 8。我只想将其加一。

最佳答案

你想要:

$('#fCount' + folderID).html(parseInt($('#fCount' + folderID).html())+1);

++ 运算符在这种情况下不起作用。它只能用于变量。您需要执行+1

这是一个working demo .

关于Jquery增加计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4878192/

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