Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些 HTML 是从谁知道在哪里动态创建的。我可以运行一些 jQuery 来删除它,而不是跟踪它吗?我想删除以下所有实例:
<div style="clear:both"></div>
你可以考虑这样的事情:
$('div[style*=both]').remove();
$("div").remove();
以上将删除所有div。
您可能希望提供更多上下文,以限制对这个特定 div 的删除。