jQueryConfirm是可用于警告、确认和对话的多用途jQuery插件。它提供了一系列类似自动关闭、Ajax加载等功能。它具有以下特点:键盘操作直接通过Ajax上载在一个特定时间后关闭对话框避免密切对话回调函数示例代码:$.confirm({    confirm: function() {            console.log('the user clicked confirm');     },     cancel: function(){             console.log('the user clicked cancel');     } });