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.
最初の選択ノード (ドロップダウン) のセレクターは何ですか?
これは最初の入力では機能しますが、最初の選択 (ドロップダウン) を見つける必要があります。
$('.modal :input:first').focus();
これはドロップダウンを見つけません。
$('.modal select:first').focus();
これを試して
$("select:first").focus();