我想在加载页面时使用JQuery将焦点设置在页面的第一个元素上.
我可以通过使用成功设置第一个元素的焦点
我可以通过使用成功设置第一个元素的焦点
$(":input:visible:first").focus();
要么
$(':input:enabled:visible:first').focus();
根据jquery,set focus on the first enabled input or select or textarea on the page.
我尝试使用以下任何一个:
$('select:first').focus(); $("select").first().focus(); $(':visible:first').focus(); $('enabled:visible:first').focus();
或者我能想到的其他变化,但没有成功.
任何人都可以帮我解决这个问题吗?
我是JQuery的初学者.
我希望此功能适用于所有主流浏览器.
非常感谢你!