本文介绍了jquery选择器建议的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 大家好, i想删除第一个jcrop-holder类的所有div标签,除了图像标签 < p > < div class = jcrop-holder > < div > < / div > < div > < / div > < img src = img.png / > < / div > < div class = jcrop-holder > < div > < / d iv > < div > < / div > < / div > < / p > 预期输出 =============== < p > < ; div class = jcrop-holde r > < img src = img.png / > < / div > < div class = jcrop-holder > < ; div > < / div > < div > < / div > < / div > < / p > i使用了这个,但我得不到结果 - >> $(。jcrop-holder:first)。not(img)。 remove(); 提前感谢解决方案 (。jcrop-holder:first) .not(img)。remove(); 提前感谢 试试以下代码 (' div.jcrop-holder:first')。find(' div')。remove(); hello all ,i want to remove all div tag of first jcrop-holder class except image tag<p><div class="jcrop-holder"><div></div><div></div><img src="img.png" /></div><div class="jcrop-holder"><div></div><div></div></div></p>expected output===============<p><div class="jcrop-holder"><img src="img.png" /></div><div class="jcrop-holder"><div></div><div></div></div></p>i used this one but i cant get result -->>$(".jcrop-holder:first").not("img").remove();thanks in advance 解决方案 (".jcrop-holder:first").not("img").remove();thanks in advanceTry below code('div.jcrop-holder:first').find('div').remove(); 这篇关于jquery选择器建议的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-11 20:10