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.
我想删除不需要的嵌套。
如何从 DOM 中选择具有此表单的元素:
<div style="display: block;"> .. </div>
这似乎是一个严格的过滤,如:
var unwanted_nest = $('.webform-client-form').find('div:not([id])').filter('div:not([class])');
只会显示如下形式:..
试试这个
$('div[style="display: block;"]');
在这里摆弄
style= display : block但是,如果这是你想要的,这会选择所有带有 attr 的 div
style= display : block