最佳答案
我希望使用 jQuery 而不是 ok/Cancel 按钮获得是/否通知:
jQuery.alerts.okButton = 'Yes';
jQuery.alerts.cancelButton = 'No';
jConfirm('Are you sure??', '', function(r) {
if (r == true) {
//Ok button pressed...
}
}
还有别的选择吗?