这是我的问题:
我有 2 个变量:
var func = function() {
$(dialog).dialog("close");
}
var m = "hello"
我调用一个方法
this.xyz(func , m)
方法 xyz 看起来像
xyz : function(func, m) {
//there is an OK button on which I am calling click event
click: function() {
func();
}
}
Approach-1 现在在 xyz 中,如果我替换func(); 与$(dialog).dialog("close"); 完美运行
方法 2,但使用 func(); 按钮单击不会关闭对话框
我想使用方法 2 但无法使其工作
谢谢