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.
重複の可能性: jQueryはクラス属性を持たないすべてのdivを取得します
クラスが定義されていないすべての要素を選択する必要があります。JQueryでそれを行うにはどうすればよいですか?
$(':not([class])')
ただし、html, body, headクラスがない場合も選択されることに注意してください。
html, body, head
このクエリは、すべての要素を選択してから、クラス属性を持たない要素をフィルタリングします。$('*').not('[class]')
$('*').not('[class]')