我的應用程序與許多模態窗體對話框一起工作,我想通過調用函數創建模態窗體對話框,但是當我在對話框上單擊確定按鈕時出現錯誤「i.apply不是函數」 。我下面在函數中創建模態窗體對話框
的html代碼:
<div id="dlg_srch_acnt">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="dtl_acnt_srch" style=" padding-bottom:0px;">
<thead>
<tr>
<th>Id</th>
<th>Account name</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
腳本
function init_dlg(id, autoOpen, height, width, modal, fn_button1)
{
id.dialog({
autoOpen:autoOpen,
height:height,
width:width,
modal:modal,
buttons:{
'OK':fn_button1,
},
close:fn_close
});
}
function fn_ok()
{
$('#parnt_acnt').val(acnt_name);
$('#dlg_srch_acnt').('close');
}
init_dlg($('#dlg_srch_acnt'), false, '440', '480', true, 'fn_ok()');
對不起,是 「遲到了」,但也許我的回答將與任何揮之不去的問題有所幫助。 – gibberish