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