首页 > 代码库 > jquery dialog 打开的时候自动聚焦解决方法
jquery dialog 打开的时候自动聚焦解决方法
方法一:
p1_dialog_seniorSearch.dialog({ title:"高级查询", autoOpen:false,//默认关闭 modal: true,//开启遮罩层 width:570, height:330, buttons: { "查询":function(){ seniorSearch(1,20) } , "关闭": function() { p1_dialog_seniorSearch.dialog( "close" ); } }, open:function(event, ui){ $(this).parent().focus(); }//取消获取焦点 });
方法二:
在要焦点的的控件加上 autofocus
如:第一个控件为 datepicker,默认dialog打开会自动弹出日历
解决:在该dialog加个隐藏input,
<input type="hidden" autofocus/>
未加 autofocus,dialog不会聚焦影藏的input的。
参考文章:
http://jqueryui.com/upgrade-guide/1.10/#added-ability-to-specify-which-element-to-focus-on-open
http://stackoverflow.com/questions/1202079/prevent-jquery-ui-dialog-from-setting-focus-to-first-textbox
jquery dialog 打开的时候自动聚焦解决方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。