JavaScript 确认()到jQuery UI对话框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 确认()到jQuery UI对话框相关的知识,希望对你有一定的参考价值。
/**
* Override javascript confirm() and wrap it into a jQuery-UI Dialog box
*
* @depends $.getOrCreateDialog
*
* @param { String } the alert message
* @param { String/Object } the confirm callback
* @param { Object } jQuery Dialog box options
*/
function confirm(message, callback, options) {
var defaults = {
modal : true,
resizable : false,
buttons : {
Ok: function() {
$(this).dialog('close');
return (typeof callback == 'string') ?
window.location.href = callback :
callback();
},
Cancel: function() {
$(this).dialog('close');
return false;
}
},
show : 'fade',
hide : 'fade',
minHeight : 50,
dialogClass : 'modal-shadow'
}
$confirm = $.getOrCreateDialog('confirm');
// set message
$("p", $confirm).html(message);
// init dialog
$confirm.dialog($.extend({}, defaults, options));
}
以上是关于JavaScript 确认()到jQuery UI对话框的主要内容,如果未能解决你的问题,请参考以下文章
使用 jquery UI 确认表单提交
JavaScript alert()到jQuery UI对话框
如何使用 jQuery UI 对话框确认数据库行删除?
使用 jQuery 和 Javascript 将带有用户输入内容的函数数组返回到 UI
Element UI Form表单验证
在将按钮添加到 jQuery UI 对话框时,如何防止有人更改或避免我的 JavaScript 逻辑?