我有一个这样的DOM

<table style="display:none;" id="risposta-campione">
<tr>
<td>
    <label>Risposta</label><textarea id="risposta_0000" name="risposta_0000" cols="35" rows="2"></textarea>
    <button type="button" onclick="cancellaRispostaDomanda('0000')" class="cancella-risposta"></button>
    <button type="button" onclick="aggiungiRispostaDomanda('0000')" class="aggiungi-risposta"></button>
</td>
</tr>
</table>


我想用jquery替换所有'0000'出现而不获取每个元素。

这可能吗?

我尝试了这个:

elem = $('#risposta-campione').text() // how convert dom to string?!
elem.replace('0000', 'hello');


没有解决方案:-/

最佳答案

使用$('#risposta-campione').html().replace('0000', 'hello');

关于jquery - 替换dom元素中的所有字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5678742/

10-08 22:46