我想要使用jQuery的是/否警报,而不是“确定/取消”按钮:
jQuery.alerts.okButton = 'Yes';
jQuery.alerts.cancelButton = 'No';
jConfirm('Are you sure??', '', function(r) {
if (r == true) {
//Ok button pressed...
}
}
还有其他选择吗?
2
Dupe,stackoverflow.com
—
David Yell,2010年
有一个看看jQuery用户界面:jqueryui.com/demos/dialog/#modal-confirmation
—
jAndy
$ .alerts.okButton ='是'; $ .alerts.cancelButton ='否'; jConfirm('Are you sure ??','',function(r){if(r == true){//按下确定按钮...}}
—
Sushanth CS 2012年
另一个JQuery Dialog解决方案更像是Confirm()函数,该返回的函数为:stackoverflow.com/a/18474005/1876355希望这会
—
Pierre