でデルを見つけ、私はこのHTMLINSタグにすべてのINS、テキストノードラップを見つけ、新しいDELタグのそれぞれのクラス名
<html>
<head></head>
<body>
<div class="para">
<ins>A computer is a</ins> popular <del>new</del><ins> device</ins>
</div>
<div class="para">
<ins>Stored programs</ins><del>required the re-wiring and re-structuring of the machine.</del>
</div>
<div class="para">
<ins>Integrated </ins>new<del>circuits</del><ins>System </ins>
</div>
</body>
</html>
を持っている私は、すべてのインをつかむしたい、とそれぞれのテキストノードパラクラスと新しいインタグにラップしても、次の
<html>
<head></head>
<body>
<div class="para">
<ins>A computer is a popular</ins><del>new</del><ins> device</ins>
</div>
<div class="para">
<ins>Stored programs</ins><del>required the re-wiring and re-structuring of the machine.</del>
</div>
<div class="para">
<ins>Integrated new</ins><del>circuits</del><ins>System </ins>
</div>
</body>
</html>
のような新しいデルタグにデルタグiは、次のコードを試してみました
var unit = $('.para');
$.each(unit, function(){
var nodes = $(this).find('ins');
})
これを解決するのに役立ちます
なぜ 'ない期待される結果で' html'で ' "popluar" ですか?に選択
#text
ノードを追加する.appendTo()
また、結果の最初の '.para'は、' 'で始まっていないか、余分な' 'がありますか? – guest271314