私は次の問題を抱えています
jqueryマルチノードオブジェクトを作成し、jqueryセレクターでノードの1つを削除したい
var o = $("<tr class=items /><tr class=details />");
o.find(".details").remove(); // doesn't work
var outer = $("<div />"); // try to wrap with an outer
outer.append(o);
outer.find(".details").remove(); //removes only from outer
手伝ってくれてありがとう