ページ上のこのhtmlを想像してください
<div id="hpl_content_wrap">
<p class="foobar">this is one word and then another word comes in foobar and then more words and then foobar again.</p>
<p>this is a <a href="http://foobar.com" data-bitly-type="bitly_hover_card">link with foobar in an attribute</a> but only the foobar inside of the link should be replaced.</p>
</div>
javascriptを使用して、htmlタグ内を変更せずにすべての「foobar」の単語を「herpderp」に変更するにはどうすればよいですか?
すなわち。プレーンテキストのみを変更する必要があります。
したがって、変更された成功したhtmlは
<div id="hpl_content_wrap">
<p class="foobar">this is one word and then another word comes in herpderp and then more words and then herpderp again.</p>
<p>this is a <a href="http://foobar.com" data-bitly-type="bitly_hover_card">link with herpderp in an attribute</a> but only the herpderp inside of the link should be replaced. </p>
</div>