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.
私は次のようなことをしようとしています:
$(".test").find("button or input[type=button]")
これどうやってするの?
はい、それは複数セレクターと呼ばれ、コンマです:
$(".test").find("button, input[type=button]")
完全を期すために、:buttonはまさにこれを行うことに注意してください。
:button
コンマを使用するだけです$(".test").find("button, input[type=button]");
$(".test").find("button, input[type=button]");