我使用 Javascript,我想为授权创建类。
我的代码是
function Auth() {
this.action;
this.run = function() {
$("#auth-dialog-id").dialog({
width: 400,
height: 250,
modal: true,
buttons: {
OK: function() {
this.action();
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
}
});
};
}
称呼
auth = new Auth();
auth.action = a;
auth.run();
}
function a() {
alert("test");
}
但我有错误
对象 # 没有方法“动作”
有谁能够帮我?