一個簡單的問題,但我不能找到答案,我有一個jQuery的對話框:上一個jQuery對話框觸發按鈕單擊事件
$(function() {
$('#my-dialog').dialog({
modal: true, height: 'auto', width: 'auto', resizable: false, autoOpen: false,
title: "@HMSW.Resources.Persona.Res_Strings.BuscaPersona",
buttons: {
"Accept": function() {
$($(this).find('#target').val()).val($(this).find('#idPersonaSeleccionada').val());
$(this).dialog("close");
},
"Cancel": function() {
$(this).dialog("close");
}
},
});
但我的問題是:我怎麼能觸發按鈕OK(或任何)從對話框?該對話框包含一個jqGrid的,所以在jqGrid的的ondoubleclickrow事件中,我需要觸發Accept
按鈕
創建一個小提琴請 – SarathSprakash
'ondblClickRow :function(){$('#my-dialog')。find('button')。eq(0).trigger('click'); }' – Ohgodwhy
不能正常工作:( – EricGS