/** * 警告 * @param {String}消息内容 */ artDialog.alert = function (content, callback) { return artDialog({ id: 'Alert', icon: 'warning', fixed: true, // lock: true, width:250, height:50, content: content, ok: true, close: callback }); }; /** * 确认 * @param…