我有一個OK按鈕的對話框,OK按鈕的作品,但我希望用戶能夠按鍵盤上的輸入以及這是我的代碼,任何建議?使用對話框輸入按鍵
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"
});
}
我覺得這是更好的方法,因爲OP提到它正在從一個對話框來完成。 – Andreas