Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私のhtmlです:
<div id="ref"> <p>.....</p> <p>.....</p> abcd </div>
「abcd」テキストを「wxyz」という他のテキストに変更したい。特にjqueryでそのテキストにトラバースするにはどうすればよいですか?
私はこの質問を一般的に言っています、それが常に「abcd」または「wxyz」である必要はありません
$("#ref").contents().last()[0].nodeValue = "wyxz";
http://jsfiddle.net/rWss5/
$(function(){ var text = $('#ref').text(); text = text.replace("abcd", "wxyz"); $('#ref').text(text); });
http://jsfiddle.net/t2saH/