我的 HTML 中有一个跨度,如下所示,我从后面的代码中分配文本:
<span id="NewL1" visible="false"
runat="server"><span runat="server" id="NewL"></span></span>
文本类似于:“您有 3 个通知”。
我想更改 jQuery 中的数值。我已经尝试过了,但没有任何反应:
var notification = $("#NewL");
var numb = notification.text().match(/\d/g);
var finalTotalCount = parseInt(numb) - 1;
notification.text(notification.text().replace(numb, finalTotalCount ));
我做错了什么?