-2

私はjQueryに慣れていません。どうすればうまくいくか教えてください:

今:

jQuery('.class1').contents().unwrap(); // It works well, but I want more quickly

しなければならない:

text = document.querySelectorAll('section.body')[0];

jQuery(text).something('.class1').contents().unwrap(); // Does not work. Uncaught TypeError: jQuery(...)[0].add is not a function

より速く動作するように条件を指定する方法。これらの変数を持つすべてのコードは

そして、私は必要ありませんjQuery('.class1,section.body:first')。のようなものが必要ですjQuery('section.body:first .class1')section.body--->class1変数 "text"、つまり $text->class1

回答してくださった皆様、ありがとうございました。次のようになりました。

text = document.querySelectorAll('section.body')[0];

jQuery(text).find('.class1').contents().unwrap();
4

1 に答える 1