封装bootbox.js对话框

来源:互联网 发布:淘宝买家信誉度怎么看 编辑:程序博客网 时间:2024/05/16 14:02

/** * 创建对话窗口 * @param content 内容 *  @param titles 标题 *   @param classNametype 按钮样式 */$.msg = function createDialog(titles,content,classNametype){bootbox.dialog({    title :titles,    message: "<span style='color:red;'><font size='3'>"+content+"</font></span>",//内容    animate: true,//animate the dialog in and out (not supported in < IE 10)/* closeButton: false,//关闭X*/buttons: {     danger: {      label: "<i class='icon-ok'></i>确定",//按钮名称      className: classNametype,//按钮样式     }      }});};


0 0
原创粉丝点击