当前位置:嗨网首页>书籍在线阅读

26-解决方案

  
选择背景色: 黄橙 洋红 淡粉 水蓝 草绿 白色 选择字体: 宋体 黑体 微软雅黑 楷体 选择字体大小: 恢复默认

14.5.2 解决方案

init 之前扩展 $.ui.pluginname.defaults 覆盖插件默认值:

$.extend($.ui.dialog.defaults, {
   height: 300,
   width: 400,
   draggable: false,
   modal: true,
   buttons: {
     'OK': function(event, ui) {
        $(this).dialog('close');
     }
   }
});
...
$('#msg').dialog();
...
$('#note').dialog();