对不起真正的愚蠢问题.但它无论如何都无效.
试过$(“.content *:not(‘.dontgrab’)”).html(); //返回NULL
请帮忙.
谢谢.
最佳答案
这应该这样做:
原文链接:https://www.f2er.com/jquery/428585.htmlvar clone = $('div.content').clone();
clone.find('.dontgrab').remove();
var html = clone.html();