jQuery在新行中返回数字

时间:2019-04-28 01:11:25

标签: jquery html

我想从h4获取int值,然后在其中添加2,它应该返回值123125,但是我遇到的问题是,当我从h4获取文本并将','替换为“时,在新行中显示每个数字

var GetFirstUserCount = $("#GetFirstUserCount").text();

enter image description here

在删除“后”,仅显示第一个宪章

alert( $("#GetFirstUserCount").text().replace(',',''));

enter image description here

  <p><h4 id="GetFirstUserCount" class="card-title odometer">123,123</h4></p>



 var GetFirstUserCountCost = parseInt(GetFirstUserCount) + 2 ;
 $('#GetFirstUserCount').text(GetFirstUserCountCost)

1 个答案:

答案 0 :(得分:0)

您的代码错误。

正确的代码应为:

  <html>
  <head></head>
  <body>
      <p><h4 id="GetFirstUserCount" class="card-title odometer">123,123</h4></p>
      <script>
        $(document).ready(function(){
            var GetFirstUserCount = $("#GetFirstUserCount").text();
            GetFirstUserCount = $("#GetFirstUserCount").text().replace(',','');
            var GetFirstUserCountCost = parseInt(GetFirstUserCount) + 2 ;
            $('#GetFirstUserCount').text(GetFirstUserCountCost)
          })
      </script>
  </body>
</html>