我有这个
HTML:
<div id="content">This following word is not <span id="notOk">ok</span> but all the other words are ok</div>
并且使用这个jquery我试图用ok替换ok这个词,只要ok这个词不在span #notOk里面.
var content = $('#content').html() content = content.replace('ok','cool'); $('#content').html(content)
我也想保留句子而不是移动任何单词,这就是我尝试时发生的事情.我想我正在寻找类似dontGetElementByID(”)的东西.?