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.
次の簡略版はありますか:
$('input[hasThisAttr], input[hasThatAttr]')
これはかなり短いことだと思いますが、多数の共通属性と異なる属性を確認する必要がある場合は、かなり冗長になる可能性があります。
もっと考えてみると、フィルターが良い選択肢のようです。元:
$("input").filter("[hasThisAttr],[hasThatAttr]")
これにより、すべての入力が取得され、指定した属性のリストに基づいてフィルター処理されます。