ShowDialog: function (title, countMsg) {
return dialog({
width: 'auto',
title: title,
content: countMsg,
lock: true,
okValue: "确定",
ok: function () {
}
}).show();
}
我要调用这个 ShowDialog方法,同时向OK 里面写执行方法,,这个该怎么写
ShowDialog: function (title, countMsg, okCallback) { return dialog({ width: 'auto', title: title, content: countMsg, lock: true, okValue: "确定", ok: function () { if(typeof okCallback === 'function'){ okCallback(); } } }).show(); }
但是 okCallback() 方法参数有可能是两个,有可能是三个,参数没有规则
@一树梨花压萝莉: 这没关系,使用okCallback.apply(this, [p1, p2, p3 ...])
@幻天芒: OK大神果然无处不在
@一树梨花压萝莉: ~:)