如何在jQuery中将整数值增加1

时间:2015-12-08 09:20:17

标签: javascript php jquery

所以,我有以下代码:

<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感到困惑。

有人能帮助我吗?

谢谢!

1 个答案:

答案 0 :(得分:11)

你可以:

  • 使用.html函数
  • 获取div内容
  • 使用int函数
  • 将其解析为.parseInt
  • 1与结果
  • 相加
  • 最后使用.html函数
  • 更改div的html内容

在一行中:

$(this).html( parseInt( $(this).html() ) + 1 );