封装bootbox.js对话框

/**
 * 创建对话窗口
 * @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,//按钮样式
	     }
	      }
	});
};


你可能感兴趣的:(js)