我的 jquery 对话框上有两个按钮确定并取消。我希望当用户在当前打开的 Jquery ui 对话框上按 Enter 键时,它的行为就像单击 Ok 一样。按钮定义如下:
$("#dialog-confirm").dialog({
autoOpen: true,
resizable: true,
modal: true,
width: 458,
Height: 184,
buttons: {
"Login": function () {
$(this).dialog("close");
$("#frmsetAccount").submit();
},
"Cancel": function () {
$(this).dialog("close");
}
}
});
});
请提出解决方案