最佳答案
我有一个简单的 html 代码块,比如:
<span id="replies">8</span>
使用 jquery,我尝试将1添加到值(8)中。
var currentValue = $("#replies").text();
var newValue = currentValue + 1;
$("replies").text(newValue);
现在的情况是:
81
那么
811
不是9,这是正确答案。我做错了什么?