<td width="100" align="center" id="5-0" class="c5 r0">
<input type="hidden" value="3">Service Tax
<span class="jexcel_arrow">
<span id="jexcel_arrow"></span>
</span>
</td>
如何更改jquery中的“服务税”字符串。 “服务税”字符串将来可能会发生变化,因此该字符串可以是我要替换的任何东西。
请注意:我们无法更改HTML结构。
答案 0 :(得分:0)
谢谢大家的指导。
在评论中共享的Link(Changing text after an input field)帮助了我。稍有不同,但解决了我的问题。下面是解决该问题的代码。
var inputTaxCol = $("#" + newtaxColId + " :input");
text = inputTaxCol[0].nextSibling.nodeValue,
newText = text.replace(text, 'my new text here');