我有一个带有确定按钮的对话框,确定按钮有效,但我希望用户也能够在键盘上按 Enter,这是我的代码,有什么建议吗?
function showDialog()
{
$('#dialog').dialog('destroy');
$('#dialog').show();
$('#dialog').html();
$("#dialog").dialog({
resizable: false,
modal: true,
height: 120,
width: 370,
overlay: {
backgroundColor: '#000',
opacity: 0.9
},
title:"Enter possible answer"
});
}