Posted in Javascript onAugust 01, 2010
在dilog的open事件中 添加如下代码段
$("#dlgSearch").dialog({ autoOpen: false, bgiframe: true, width: 600, //height: 225, modal: true, resizable: false, open: function() { //jquery之dialog的键盘事件(输入完毕回车检索) $(this).bind("keypress.ui-dialog", function(event) { if (event.keyCode == $.ui.keyCode.ENTER) { alert("enter pressed!"); } }); }, buttons: { "取消": function() { $(this).dialog("close"); }, "搜索": function() { } }, close: function() { } });
jquery dialog键盘事件代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@