我有一个 jquery 对话框打开器,在打开的部分,我给属性值,然后我想调用一个方法。我该怎么做?我的代码:
$( "#dialog-form2" ).dialog({
autoOpen: false,
height: 600,
width: 1200,
modal: true,
title: "Title",
buttons: {
"Close": function() {
$( this ).dialog( "close" );
}
},
close: function() {
},
open : function (event, ui) {
$(this).find('input#my_input_text').val("some text");
//call a method which is written in the dialog
}
});
//调用在对话框中编写的方法 - 这是我要调用该方法的地方,它在打开的 jsp 中,而不是在我打开对话框的同一个 jsp 中。
谢谢!