[OK]ボタンのあるダイアログボックスがあります。[OK]ボタンは機能しますが、ユーザーがキーボードの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"
});
}