开发者

unfocus selectbox

开发者 https://www.devze.com 2023-01-02 18:05 出处:网络
a开发者_如何学Gofter page load, the first selectbox will be auto-focus.how to use jquery to unfocus the selectbox after page finished loading Have you tried .blur() ? E.g.

a开发者_如何学Gofter page load, the first selectbox will be auto-focus. how to use jquery to unfocus the selectbox after page finished loading


Have you tried .blur() ? E.g.

$(function() {
    $('select:eq(0)').blur();
});
0

精彩评论

暂无评论...
验证码 换一张
取 消