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 ));
私が間違っていることは何ですか?