我想从h4获取int值,然后在其中添加2,它应该返回值123125,但是我遇到的问题是,当我从h4获取文本并将','替换为“时,在新行中显示每个数字
var GetFirstUserCount = $("#GetFirstUserCount").text();
在删除“后”,仅显示第一个宪章
alert( $("#GetFirstUserCount").text().replace(',',''));
<p><h4 id="GetFirstUserCount" class="card-title odometer">123,123</h4></p>
var GetFirstUserCountCost = parseInt(GetFirstUserCount) + 2 ;
$('#GetFirstUserCount').text(GetFirstUserCountCost)
答案 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>