__DIALOG_WRAPPER__ = {}; /* IE6有个Bug,如果不给定对话框的宽度的话,在IE6下,对话框将以100%宽度显示 */ DialogManager = { 'create' :function(id){ var d = {}; if (!__DIALOG_WRAPPER__[id]) { d = new Dialog(id); __DIALOG_WRAPPER__[id] = d; } else { d = DialogManager.get(id); } return d; }, 'get' :function(id){ return __DIALOG_WRAPPER__[id]; }, 'close' :function(id){ if (__DIALOG_WRAPPER__[id].close()) { __DIALOG_WRAPPER__[id] = null; } }, 'onClose' :function (){ return true; }, /* 加载对话框样式 */ 'loadStyle' :function(){ var _dialog_js_path = $('#dialog_js').attr('src'); var _path = _dialog_js_path.split('/'); var _dialog_css = _path.slice(0, _path.length - 1).join('/') + '/dialog.css'; $('#dialog_js').after(''); } }; ScreenLocker = { 'style' : { 'position' : 'absolute', 'top' : '0px', 'left' : '0px', 'backgroundColor' : '#000', 'opacity' : 0.2, 'zIndex' : 999 }, 'masker' : null, 'lock' : function(zIndex){ if (this.masker !== null) { this.masker.width($(document).width()).height($(document).height()); return true; } this.masker = $('
'); /* 样式 */ this.masker.css(this.style); if (zIndex) { this.masker.css('zIndex', zIndex); } /* 整个文档的宽高 */ this.masker.width($(document).width()).height($(document).height()); $(document.body).append(this.masker); $("#dialog_manage_screen_locker").show(); }, 'unlock' : function(){ if (this.masker === null) { return true; } this.masker.remove(); this.masker = null; } }; Dialog = function (id){ /* 构造函数生成对话框代码,并加入到文档中 */ this.id = id; this.init(); }; Dialog.prototype = { /* 唯一标识 */ 'id' : null, /* 文档对象 */ 'dom' : null, 'lastPos' : null, 'status' : 'complete', 'onClose' : function (){ return true; }, 'tmp' : {}, /* 初始化 */ 'init' : function(){ this.dom = {'wrapper' : null, 'body':null, 'head':null, 'title':null, 'close_button':null, 'content':null}; /* 创建外层容器 */ this.dom.wrapper = $('').get(0); /* 创建对话框主体 */ this.dom.body = $('').get(0); /* 创建标题栏 */ this.dom.head = $('').get(0); /* 创建标题文本 */ this.dom.title = $('').get(0); /* 创建关闭按钮 */ this.dom.close_button = $(' ').get(0); /* 创建内容区域 */ this.dom.content = $('').get(0); /* 组合 */ $(this.dom.head).append($('').append(this.dom.title)).append(this.dom.close_button); $(this.dom.body).append(this.dom.head).append(this.dom.content); $(this.dom.wrapper).append(this.dom.body).append(''); /* 初始化样式 */ $(this.dom.wrapper).css({ 'zIndex' : 1100, 'display' : 'none', 'position' : 'absolute' }); $(this.dom.body).css({ 'position' : 'relative' }); $(this.dom.head).css({ 'cursor' : 'move' }); $(this.dom.close_button).css({ 'position' : 'absolute', 'text-indent': '-9999px', 'cursor' : 'pointer', 'overflow' : 'hidden' }); $(this.dom.content).css({ 'margin' : '0px', 'padding' : '0px' }); var self = this; /* 初始化组件事件 */ $(this.dom.close_button).click(function(){ DialogManager.close(self.id); }); /* 可拖放 */ // if(typeof draggable != 'undefined'){ // $(this.dom.wrapper).draggable({ // 'handle' : this.dom.head // }); // } /* 放入文档流 */ $(document.body).append(this.dom.wrapper); }, /* 隐藏 */ 'hide' : function(){ $(this.dom.wrapper).hide(); }, /* 显示 */ 'show' : function(pos,lock){ if (pos) { this.setPosition(pos); } /* 锁定屏幕 */ if (lock == 1) ScreenLocker.lock(999); $(this.dom.wrapper).draggable({ 'handle' : this.dom.head }); /* 显示对话框 */ $(this.dom.wrapper).show(); }, /* 关闭 */ 'close' : function(lock){ if (!this.onClose()) { return false; } /* 关闭对话框 */ $(this.dom.wrapper).remove(); /* 解锁屏幕 */ if (typeof lock == 'undefined'){ ScreenLocker.unlock(); } return true; }, /* 对话框标题 */ 'setTitle' : function(title){ $(this.dom.title).html(title); }, /* 改变对话框内容 */ 'setContents' : function(type, options){ contents = this.createContents(type, options); if (typeof(contents) == 'string') { $(this.dom.content).html(contents); } else { $(this.dom.content).empty(); $(this.dom.content).append(contents); } }, /* 设置对话框样式 */ 'setStyle' : function(style){ if (typeof(style) == 'object') { /* 否则为CSS */ $(this.dom.wrapper).css(style); } else { /* 如果是字符串,则认为是样式名 */ $(this.dom.wrapper).addClass(style); } }, 'setWidth' : function(width){ this.setStyle({'width' : width + 'px'}); }, 'setHeight' : function(height){ this.setStyle({'height' : height + 'px'}); }, /* 生成对话框内容 */ 'createContents' : function(type, options){ var _html = '', self = this, status= 'complete'; if (!options) { /* 如果只有一个参数,则认为其传递的是HTML字符串 */ this.setStatus(status); return type; } switch(type){ case 'ajax': /* 通过Ajax取得HTML,显示到页面上,此过程是异步的 */ $.get(options, function(data){ self.setContents(data); /* 使用上次定位重新定位窗口位置 */ self.setPosition(self.lastPos); }); /* 先提示正在加载 */ _html = this.createContents('loading', {'text' : 'loading...'}); break; case 'ajax_notice': /* 通过Ajax取得HTML,显示到页面上,此过程是异步的 */ $.get(options, function(data) { var json = eval('(' + data + ')'); var MsgTxt = ' ' self.setContents(MsgTxt); /* 使用上次定位重新定位窗口位置 */ self.setPosition(self.lastPos); }); /* 先提示正在加载 */ _html = this.createContents('loading', { 'text': '正在处理...' }); break; /* 以下是内置的几种对话框类型 */ case 'loading': _html = '