我不熟悉 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();