所以,我有以下代码:
<div class="total_number">
<?php echo $number_count;?>
</div>
其中$number_count
只是整数(例如,10或9)。
现在,当点击.total_number
时,我想将数字增加1。
jQuery(document).on( 'click', '.total_number', function(e) {
//increase the number
});
我对如何为此编写js感到困惑。
有人能帮助我吗?
谢谢!
答案 0 :(得分:11)
你可以:
.html
函数int
函数.parseInt
1
与结果.html
函数在一行中:
$(this).html( parseInt( $(this).html() ) + 1 );