如何在 alertify - v0.3.11 中更改按钮标签
我正在使用下面的代码
alertify.confirm("Are you sure you want to cancel this order?", function (e) {
if (e) {
document.forms.SFOrder.action=<cfoutput>'#self#=#xfa.cancelOrder#'</cfoutput>;
document.forms.SFOrder.submit();
return true;
} else {
return false;
}
}).setting('labels',{'ok':'Accept', 'cancel': 'Decline'});
但它给出了以下错误
未捕获的类型错误:alertify.confirm(...).setting 不是函数