You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
711 B

4 years ago
(function($, window) {
/**
* 确认消息框
*/
$.confirm = function(message, title, btnArray, callback) {
if ($.os.plus) {
if (typeof message === 'undefined') {
return;
} else {
if (typeof title === 'function') {
callback = title;
title = null;
btnArray = null;
} else if (typeof btnArray === 'function') {
callback = btnArray;
btnArray = null;
}
$.plusReady(function() {
plus.nativeUI.confirm(message, callback, title, btnArray);
});
}
} else {
//H5版本0为确认1为取消
if (window.confirm(message)) {
callback({
index: 0
});
} else {
callback({
index: 1
});
}
}
};
})(mui, window);