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();