| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422 |
- (function($, window, undefined) {
- var _version = '6.0.0';
- var _count = 0;
- var _expando = new Date() - 0;
- var _isIE6 = !('minWidth' in $('html')[0].style);
- var _isMobile = 'createTouch' in document && !('onmousemove' in document)
- || /(iPhone|iPad|iPod)/i.test(navigator.userAgent);
- var _isFixed = !_isIE6 && !_isMobile;
- // defaults
- var defaults = {
- /* -----已注释的配置继承自 popup.js,仍可以再这里重新定义它----- */
- // 对齐方式
- //align: 'bottom left',
-
- // 是否固定定位
- //fixed: false,
-
- // 对话框叠加高度值(重要:此值不能超过浏览器最大限制)
- //zIndex: 1024,
- // 设置遮罩背景颜色
- //backdropBackground: '#000',
- // 设置遮罩透明度
- //backdropOpacity: 0.7,
- // 消息内容
- content: '<span class="ui-dialog-loading">Loading..</span>',
-
- // 标题
- title: '',
- // 对话框状态栏区域 HTML 代码
- statusbar: '',
-
- // 自定义按钮
- button: null,
-
- // 确定按钮回调函数
- ok: null,
-
- // 取消按钮回调函数
- cancel: null,
- // 确定按钮文本
- okValue: 'ok',
-
- // 取消按钮文本
- cancelValue: 'cancel',
-
- // 内容宽度
- width: '',
-
- // 内容高度
- height: '',
-
- // 内容与边界填充距离
- padding: '',
-
- // 对话框自定义 className
- skin: '',
- // 是否支持快捷关闭(点击遮罩层自动关闭)
- quickClose: false,
- // css 文件路径,留空则不会使用 js 自动加载样式
- // 注意:css 只允许加载一个
- cssUri: '../css/ui-dialog.css',
- // 模板(使用 table 解决 IE7 宽度自适应的 BUG)
- // js 使用 i="***" 属性识别结构,其余的均可自定义
- innerHTML:
- '<div i="dialog" class="ui-dialog">'
- + '<div class="ui-dialog-arrow-a"></div>'
- + '<div class="ui-dialog-arrow-b"></div>'
- + '<table class="ui-dialog-grid">'
- + '<tr>'
- + '<td i="header" class="ui-dialog-header">'
- + '<a i="close" class="ui-dialog-close">×</a>' //@edit:将之前的 <button> 修改为 <a> //@edit: 去掉关闭按钮
- + '<div i="title" class="ui-dialog-title"></div>'
- + '</td>'
- + '</tr>'
- + '<tr>'
- + '<td i="body" class="ui-dialog-body">'
- + '<div i="content" class="ui-dialog-content"></div>'
- + '</td>'
- + '</tr>'
- + '<tr>'
- + '<td i="footer" class="ui-dialog-footer">'
- + '<div i="statusbar" class="ui-dialog-statusbar"></div>'
- + '<div i="button" class="ui-dialog-button"></div>'
- + '</td>'
- + '</tr>'
- + '</table>'
- +'</div>',
- innerHTML_NC: //@edit: 增加NC框架使用的Dialog
- '<div i="dialog" class="ui-dialog" style="background-color:#fff; padding:10px">'
- + '<div class="ui-dialog-arrow-a"></div>'
- + '<div class="ui-dialog-arrow-b"></div>'
- + '<div class="ui-dialog-header" style="border: none">'
- + '<a i="close" title="关闭" class="ui-dialog-close">×</a>' //@edit: 去掉关闭按钮
- + '</div>'
- + '<div i="content" class="ui-dialog-content">'
- + '</div>'
- +'</div>'
- };
- // Popup 定义开始
- var Popup = function () {
- this.destroyed = false;
- this.__popup = $('<div />')
- .attr({
- tabindex: '-1'
- })
- .css({
- display: 'none',
- position: 'absolute',
- left: 0,
- top: 0,
- bottom: 'auto',
- right: 'auto',
- margin: 0,
- padding: 0,
- outline: 0,
- border: '0 none',
- background: 'transparent'
- })
- .html(this.innerHTML)
- .appendTo('body');
- this.__backdrop = $('<div />');
- // 使用 HTMLElement 作为外部接口使用,而不是 jquery 对象
- // 统一的接口利于未来 Popup 移植到其他 DOM 库中
- this.node = this.__popup[0];
- this.backdrop = this.__backdrop[0];
- _count ++;
- };
- $.extend(Popup.prototype, {
-
- /**
- * 初始化完毕事件,在 show()、showModal() 执行
- * @name Popup.prototype.onshow
- * @event
- */
- /**
- * 关闭事件,在 close() 执行
- * @name Popup.prototype.onclose
- * @event
- */
- /**
- * 销毁前事件,在 remove() 前执行
- * @name Popup.prototype.onbeforeremove
- * @event
- */
- /**
- * 销毁事件,在 remove() 执行
- * @name Popup.prototype.onremove
- * @event
- */
- /**
- * 重置事件,在 reset() 执行
- * @name Popup.prototype.onreset
- * @event
- */
- /**
- * 焦点事件,在 foucs() 执行
- * @name Popup.prototype.onfocus
- * @event
- */
- /**
- * 失焦事件,在 blur() 执行
- * @name Popup.prototype.onblur
- * @event
- */
- /** 浮层 DOM 素节点 */
- node: null,
- /** 遮罩 DOM 节点 */
- backdrop: null,
- /** 是否开启固定定位 */
- fixed: false,
- /** 判断对话框是否删除 */
- destroyed: true,
- /** 判断对话框是否显示 */
- open: false,
- /** close 返回值 */
- returnValue: '',
- /** 是否自动聚焦 */
- autofocus: true,
- /** 对齐方式 */
- align: 'bottom left',
- /** 设置遮罩背景颜色 */
- backdropBackground: '#000',
- /** 设置遮罩透明度 */
- backdropOpacity: 0.7,
- /** 内部的 HTML 字符串 */
- innerHTML: '',
- /** 类名 */
- className: 'ui-popup',
- /**
- * 显示浮层
- * @param {HTMLElement, Event} 指定位置(可选)
- */
- show: function (anchor) {
- if (this.destroyed) {
- return this;
- }
- var that = this;
- var popup = this.__popup;
- this.__activeElement = this.__getActive();
- this.open = true;
- this.follow = anchor || this.follow;
- if (!this.__ready) {
- popup.addClass(this.className);
- if (this.modal) {
- this.__lock();
- }
- if (!popup[0].innerHTML) { // @edit: 原来的判断为 "!popup.html()",但这种方式会造成 ng-include失效,所以修改为 "!popup[0].innerHTML"
- popup.html(this.innerHTML);
- }
- if (!_isIE6) {
- $(window).bind('resize', this.__onresize = function () {
- that.reset();
- });
- }
- this.__ready = true;
- }
- popup
- .addClass(this.className + '-show')
- .attr('role', this.modal ? 'alertdialog' : 'dialog')
- .css('position', this.fixed ? 'fixed' : 'absolute')
- .show();
- this.__backdrop.show();
- this.reset().focus();
- this.__dispatchEvent('show');
- return this;
- },
- /** 显示模态浮层。参数参见 show() */
- showModal: function () {
- this.modal = true;
- return this.show.apply(this, arguments);
- },
-
-
- /** 关闭浮层 */
- close: function (result) {
-
- if (!this.destroyed && this.open) {
-
- if (result !== undefined) {
- this.returnValue = result;
- }
-
- this.__popup.hide().removeClass(this.className + '-show');
- this.__backdrop.hide();
- this.open = false;
- this.blur();
- this.__dispatchEvent('close',this.returnValue); //@edit: 增加返回值参数
- }
-
- if (this.destroyed) {
- return this;
- }
- this.__dispatchEvent('beforeremove');
-
- if (Popup.current === this) {
- Popup.current = null;
- }
-
- this.__unlock();
- this.__popup.remove();
- this.__backdrop.remove();
- // 恢复焦点,照顾键盘操作的用户
- this.blur();
- if (!_isIE6) {
- $(window).unbind('resize', this.__onresize);
- }
- this.__dispatchEvent('remove');
- for (var i in this) {
- delete this[i];
- }
-
- return this;
- },
- /** 销毁浮层 */
- remove: function () {
- if (this.destroyed) {
- return this;
- }
- this.__dispatchEvent('beforeremove');
-
- if (Popup.current === this) {
- Popup.current = null;
- }
-
- this.__unlock();
- this.__popup.remove();
- this.__backdrop.remove();
- // 恢复焦点,照顾键盘操作的用户
- this.blur();
- if (!_isIE6) {
- $(window).unbind('resize', this.__onresize);
- }
- this.__dispatchEvent('remove');
- for (var i in this) {
- delete this[i];
- }
- return this;
- },
- /** 手动刷新位置 */
- reset: function () {
- var elem = this.follow;
- if (elem) {
- this.__follow(elem);
- } else {
- this.__center();
- }
- this.__dispatchEvent('reset');
- return this;
- },
- /** 让浮层获取焦点 */
- focus: function () {
- var node = this.node;
- var current = Popup.current;
- if (current && current !== this) {
- current.blur(false);
- }
- // 检查焦点是否在浮层里面
- if (!$.contains(node, this.__getActive())) {
- var autofocus = this.__popup.find('[autofocus]')[0];
- if (!this._autofocus && autofocus) {
- this._autofocus = true;
- } else {
- autofocus = node;
- }
- this.__focus(autofocus);
- }
- Popup.current = this;
- this.__popup.addClass(this.className + '-focus');
- this.__zIndex();
- this.__dispatchEvent('focus');
- this.reset();
- return this;
- },
- /** 让浮层失去焦点。将焦点退还给之前的元素,照顾视力障碍用户 */
- blur: function () {
- var activeElement = this.__activeElement;
- var isBlur = arguments[0];
- if (isBlur !== false) {
- this.__focus(activeElement);
- }
- this._autofocus = false;
- this.__popup.removeClass(this.className + '-focus');
- this.__dispatchEvent('blur');
- return this;
- },
- /**
- * 添加事件
- * @param {String} 事件类型
- * @param {Function} 监听函数
- */
- addEventListener: function (type, callback) {
- this.__getEventListener(type).push(callback);
- return this;
- },
- /**
- * 删除事件
- * @param {String} 事件类型
- * @param {Function} 监听函数
- */
- removeEventListener: function (type, callback) {
- var listeners = this.__getEventListener(type);
- for (var i = 0; i < listeners.length; i ++) {
- if (callback === listeners[i]) {
- listeners.splice(i--, 1);
- }
- }
- return this;
- },
- // 获取事件缓存
- __getEventListener: function (type) {
- var listener = this.__listener;
- if (!listener) {
- listener = this.__listener = {};
- }
- if (!listener[type]) {
- listener[type] = [];
- }
- return listener[type];
- },
- // 派发事件
- __dispatchEvent: function (type,args) { //@edit: 增加args参数,方便传值
- var listeners = this.__getEventListener(type);
- if (this['on' + type]) {
- if(args){
- this['on' + type](args);
- }else{
- this['on' + type]();
- }
-
- }
- for (var i = 0; i < listeners.length; i ++) {
- listeners[i].call(this);
- }
- },
- // 对元素安全聚焦
- __focus: function (elem) {
- // 防止 iframe 跨域无权限报错
- // 防止 IE 不可见元素报错
- try {
- // ie11 bug: iframe 页面点击会跳到顶部
- if (this.autofocus && !/^iframe$/i.test(elem.nodeName)) {
- elem.focus();
- }
- } catch (e) {}
- },
- // 获取当前焦点的元素
- __getActive: function () {
- try {// try: ie8~9, iframe #26
- var activeElement = document.activeElement;
- var contentDocument = activeElement.contentDocument;
- var elem = contentDocument && contentDocument.activeElement || activeElement;
- return elem;
- } catch (e) {}
- },
- // 置顶浮层
- __zIndex: function () {
-
- var index = Popup.zIndex ++;
-
- // 设置叠加高度
- this.__popup.css('zIndex', index);
- this.__backdrop.css('zIndex', index - 1);
- this.zIndex = index;
- },
- // 居中浮层
- __center: function () {
-
- var popup = this.__popup;
- var $window = $(window);
- var $document = $(document);
- var fixed = this.fixed;
- var dl = fixed ? 0 : $document.scrollLeft();
- var dt = fixed ? 0 : $document.scrollTop();
- var ww = $window.width();
- var wh = $window.height();
- var ow = popup.width();
- var oh = popup.height();
- var left = (ww - ow) / 2 + dl;
- var top = (wh - oh) * 382 / 1000 + dt;// 黄金比例
- var style = popup[0].style;
-
- style.left = Math.max(parseInt(left), dl) + 'px';
- style.top = Math.max(parseInt(top), dt) + 'px';
- },
-
-
- // 指定位置 @param {HTMLElement, Event} anchor
- __follow: function (anchor) {
-
- var $elem = anchor.parentNode && $(anchor);
- var popup = this.__popup;
-
- if (this.__followSkin) {
- popup.removeClass(this.__followSkin);
- }
- // 隐藏元素不可用
- if ($elem) {
- var o = $elem.offset();
- if (o.left * o.top < 0) {
- return this.__center();
- }
- }
-
- var that = this;
- var fixed = this.fixed;
- var $window = $(window);
- var $document = $(document);
- var winWidth = $window.width();
- var winHeight = window.document.body.clientHeight; //@edit: 原来为 “$window.height()”,在某些chrome版本中取值不对,改成原生JS
- var docLeft = $document.scrollLeft();
- var docTop = $document.scrollTop();
- var popupWidth = popup.width();
- var popupHeight = popup.height();
- var width = $elem ? $elem.outerWidth() : 0;
- var height = $elem ? $elem.outerHeight() : 0;
- var offset = this.__offset(anchor);
- var x = offset.left;
- var y = offset.top;
- var left = fixed ? x - docLeft : x;
- var top = fixed ? y - docTop : y;
- var minLeft = fixed ? 0 : docLeft;
- var minTop = fixed ? 0 : docTop;
- var maxLeft = minLeft + winWidth - popupWidth;
- var maxTop = minTop + winHeight - popupHeight;
- var css = {};
- var align = this.align.split(' ');
- var className = this.className + '-';
- var reverse = {top: 'bottom', bottom: 'top', left: 'right', right: 'left'};
- var name = {top: 'top', bottom: 'top', left: 'left', right: 'left'};
- var temp = [{
- top: top - popupHeight,
- bottom: top + height,
- left: left - popupWidth,
- right: left + width
- }, {
- top: top,
- bottom: top - popupHeight + height,
- left: left,
- right: left - popupWidth + width
- }];
- var center = {
- left: left + width / 2 - popupWidth / 2,
- top: top + height / 2 - popupHeight / 2
- };
-
- var range = {
- left: [minLeft, maxLeft],
- top: [minTop, maxTop]
- };
- // 超出可视区域重新适应位置
- $.each(align, function (i, val) {
- // 超出右或下边界:使用左或者上边对齐
- if (temp[i][val] > range[name[val]][1]) {
- val = align[i] = reverse[val];
- }
- // 超出左或右边界:使用右或者下边对齐
- if (temp[i][val] < range[name[val]][0]) {
- align[i] = reverse[val];
- }
- });
- // 一个参数的情况
- if (!align[1]) {
- name[align[1]] = name[align[0]] === 'left' ? 'top' : 'left';
- temp[1][align[1]] = center[name[align[1]]];
- }
- className += align.join('-');
-
- that.__followSkin = className;
- if ($elem) {
- popup.addClass(className);
- }
-
- css[name[align[0]]] = parseInt(temp[0][align[0]]);
- css[name[align[1]]] = parseInt(temp[1][align[1]]);
- popup.css(css);
- },
- // 获取元素相对于页面的位置(包括iframe内的元素)
- // 暂时不支持两层以上的 iframe 套嵌
- __offset: function (anchor) {
- var isNode = anchor.parentNode;
- var offset = isNode ? $(anchor).offset() : {
- left: anchor.pageX,
- top: anchor.pageY
- };
- anchor = isNode ? anchor : anchor.target;
- var ownerDocument = anchor.ownerDocument;
- var defaultView = ownerDocument.defaultView || ownerDocument.parentWindow;
-
- if (defaultView == window) {// IE <= 8 只能使用两个等于号
- return offset;
- }
- // {Element Ifarme}
- var frameElement = defaultView.frameElement;
- var $ownerDocument = $(ownerDocument);
- var docLeft = $ownerDocument.scrollLeft();
- var docTop = $ownerDocument.scrollTop();
- var frameOffset = $(frameElement).offset();
- var frameLeft = frameOffset.left;
- var frameTop = frameOffset.top;
-
- return {
- left: offset.left + frameLeft - docLeft,
- top: offset.top + frameTop - docTop
- };
- },
-
-
- // 设置屏锁遮罩
- __lock: function () {
- var that = this;
- var popup = this.__popup;
- var backdrop = this.__backdrop;
- var backdropCss = {
- position: 'fixed',
- left: 0,
- top: 0,
- width: '100%',
- height: '100%',
- overflow: 'hidden',
- userSelect: 'none',
- opacity: 0,
- background: this.backdropBackground
- };
- popup.addClass(this.className + '-modal');
-
- // 避免遮罩不能盖住上一次的对话框
- // 如果当前对话框是上一个对话框创建,点击的那一瞬间它会增长 zIndex 值
- Popup.zIndex = Popup.zIndex + 2;
- this.__zIndex();
- if (!_isFixed) {
- $.extend(backdropCss, {
- position: 'absolute',
- width: $(window).width() + 'px',
- height: $(document).height() + 'px'
- });
- }
- backdrop
- .css(backdropCss)
- .animate({opacity: this.backdropOpacity}, 150)
- .insertAfter(popup)
- // 锁住模态对话框的 tab 简单办法
- // 甚至可以避免焦点落入对话框外的 iframe 中
- .attr({tabindex: '0'})
- .bind('focus', function () {
- that.focus();
- });
- },
-
- // 卸载屏锁遮罩
- __unlock: function () {
- if (this.modal) {
- this.__popup.removeClass(this.className + '-modal');
- this.__backdrop.remove();
- delete this.modal;
- }
- }
-
- });
- /** 当前叠加高度 */
- Popup.zIndex = 1e4;
- /** 顶层浮层的实例 */
- Popup.current = null;
- // Popup 定义结束
- // artDialog 定义开始
- var artDialog = function (options, ok, cancel) {
- var originalOptions = options = options || {};
-
- if (typeof options === 'string' || options.nodeType === 1) {
-
- options = {content: options, fixed: !_isMobile};
- }
-
- options = $.extend(true, {}, artDialog.defaults, options);
- options._ = originalOptions;
- var id = options.id = options.id || _expando + _count;
- var api = artDialog.get(id);
-
-
- // 如果存在同名的对话框对象,则直接返回
- if (api) {
- return api.focus();
- }
-
-
- // 目前主流移动设备对fixed支持不好,禁用此特性
- if (!_isFixed) {
- options.fixed = false;
- }
- //@edit: 增加对 innerHTML_NC 的处理
- if(options.type === "NC"){
- options.innerHTML = options.innerHTML_NC
- }
- // 快捷关闭支持:点击对话框外快速关闭对话框
- if (options.quickClose || options.lock) { //@edit: 以前options.quickClose 为true的时候才进行lock,现在增加 options.lock
- options.modal = true;
- if (!originalOptions.backdropOpacity) {
- options.backdropOpacity = 0;
- }
- }
-
- // 按钮组
- if (!$.isArray(options.button)) {
- options.button = [];
- }
- // 取消按钮
- if (cancel !== undefined) {
- options.cancel = cancel;
- }
-
- if (options.cancel) {
- options.button.push({
- id: 'cancel',
- value: options.cancelValue,
- callback: options.cancel
- });
- }
-
-
- // 确定按钮
- if (ok !== undefined) {
- options.ok = ok;
- }
-
- if (options.ok) {
- options.button.push({
- id: 'ok',
- value: options.okValue,
- callback: options.ok,
- autofocus: true
- });
- }
-
- return artDialog.list[id] = new artDialog.create(options);
- };
- var popup = function () {};
- popup.prototype = Popup.prototype;
- var prototype = artDialog.prototype = new popup();
- artDialog.version = _version;
- artDialog.create = function (options) {
- var that = this;
- // drag 支持 开始
- if(options.drag){
- var drag = $.artDrag;
- this.oncreate = function (api) {
- var options = api.options;
- var originalOptions = options._;
- // 页面地址
- var url = options.url;
- // 页面加载完毕的事件
- var oniframeload = options.oniframeload;
- var $iframe;
- if (url) {
- this.padding = options.padding = 0;
- $iframe = $('<iframe />');
- $iframe.attr({
- src: url,
- name: api.id,
- width: '100%',
- height: '100%',
- allowtransparency: 'yes',
- frameborder: 'no',
- scrolling: 'no'
- })
- .bind('load', function () {
- var test;
-
- try {
- // 跨域测试
- test = $iframe[0].contentWindow.frameElement;
- } catch (e) {}
- if (test) {
- if (!options.width) {
- api.width($iframe.contents().width());
- }
-
- if (!options.height) {
- api.height($iframe.contents().height());
- }
- }
- if (oniframeload) {
- oniframeload.call(api);
- }
- });
- api.addEventListener('beforeremove', function () {
- // 重要!需要重置iframe地址,否则下次出现的对话框在IE6、7无法聚焦input
- // IE删除iframe后,iframe仍然会留在内存中出现上述问题,置换src是最容易解决的方法
- $iframe.attr('src', 'about:blank').remove();
- }, false);
- api.content($iframe[0]);
- api.iframeNode = $iframe[0];
- }
- // 对于子页面呼出的对话框特殊处理
- // 如果对话框配置来自 iframe
- if (!(originalOptions instanceof Object)) {
- var un = function () {
- api.close().remove();
- };
- // 找到那个 iframe
- for (var i = 0; i < frames.length; i ++) {
- try {
- if (originalOptions instanceof frames[i].Object) {
- // 让 iframe 刷新前时候也关闭对话框,
- // 防止要执行的对象被强制收回导致 IE 报错:“不能执行已释放 Script 的代码”
- $(frames[i]).one('unload', un);
- break;
- }
- } catch (e) {}
- }
- }
- // 拖拽支持
- $(api.node).bind(drag.types.start, '[i=dialog]', function (event) {
- // 排除气泡类型的对话框
- if (!api.follow) {
- //api.focus(); //@edit: 修复需要单击两次“关闭”按钮才能关闭弹窗的问题
- if (event.offsetX < api.node.clientWidth - 20) { //@edit: 暂时解决IE下单击纵向滚动条后弹出框会跟着鼠标移动的问题
- drag.create(api.node, event);
- }
- }
- });
- $(api.node).bind(drag.types.start, '[i=content]', function (event) {
- event.stopPropagation(); // do something
- // return false;
- });
- };
- }else{
- this.oncreate = $.noop;
- }
- // drag 支持 结束
- $.extend(this, new Popup());
- var $popup = $(this.node).html(options.innerHTML);
- this.options = options;
- this._popup = $popup;
-
- $.each(options, function (name, value) {
- if (typeof that[name] === 'function') {
- that[name](value);
- } else {
- that[name] = value;
- }
- });
- // 更新 zIndex 全局配置
- if (options.zIndex) {
- Popup.zIndex = options.zIndex;
- }
- // 设置 ARIA 信息
- $popup.attr({
- 'aria-labelledby': this._$('title')
- .attr('id', 'title:' + this.id).attr('id'),
- 'aria-describedby': this._$('content')
- .attr('id', 'content:' + this.id).attr('id')
- });
- // 关闭按钮
- this._$('close')
- .css('display', this.cancel === false ? 'none' : '')
- .attr('title', this.cancelValue)
- .bind('click', function (event) {
- that._trigger('cancel');
- event.preventDefault();
- });
-
- // 添加视觉参数
- this._$('dialog').addClass(this.skin);
- this._$('body').css('padding', this.padding);
- // 按钮组点击
- $popup.bind('click', '[data-id]', function (event) {
- var $this = $(this);
- if (!$this.attr('disabled')) {// IE BUG
- if($this.data('id')){ //@edit: 增加这个判断,防止点击弹出框边缘时,自动关闭弹出框
- that._trigger($this.data('id'));
- }
- }
-
- event.preventDefault();
- });
- // 点击遮罩自动关闭对话框
- if (options.quickClose) {
- $(this.backdrop).bind(
- 'onmousedown' in document ? 'mousedown' : 'click',
- function () {
- that._trigger('cancel');
- });
- }
- // ESC 快捷键关闭对话框
- this._esc = function (event) {
- var target = event.target;
- var nodeName = target.nodeName;
- var rinput = /^input|textarea$/i;
- var isTop = Popup.current === that;
- var keyCode = event.keyCode;
- // 避免输入状态中 ESC 误操作关闭
- if (!isTop || rinput.test(nodeName) && target.type !== 'button') {
- return;
- }
-
- if (keyCode === 27) {
- that._trigger('cancel');
- }
- };
- $(document).bind('keydown', this._esc);
- this.addEventListener('remove', function () {
- $(document).unbind('keydown', this._esc);
- delete artDialog.list[this.id];
- });
- _count ++;
-
- this.oncreate(this);
- return this;
- };
- artDialog.create.prototype = prototype;
- $.extend(prototype, {
- /**
- * 显示对话框
- * @name artDialog.prototype.show
- * @param {HTMLElement Object, Event Object} 指定位置(可选)
- */
-
- /**
- * 显示对话框(模态)
- * @name artDialog.prototype.showModal
- * @param {HTMLElement Object, Event Object} 指定位置(可选)
- */
- /**
- * 关闭对话框
- * @name artDialog.prototype.close
- * @param {String, Number} 返回值,可被 onclose 事件收取(可选)
- */
- /**
- * 销毁对话框
- * @name artDialog.prototype.remove
- */
- /**
- * 重置对话框位置
- * @name artDialog.prototype.reset
- */
- /**
- * 让对话框聚焦(同时置顶)
- * @name artDialog.prototype.focus
- */
- /**
- * 让对话框失焦(同时置顶)
- * @name artDialog.prototype.blur
- */
- /**
- * 添加事件
- * @param {String} 事件类型
- * @param {Function} 监听函数
- * @name artDialog.prototype.addEventListener
- */
- /**
- * 删除事件
- * @param {String} 事件类型
- * @param {Function} 监听函数
- * @name artDialog.prototype.removeEventListener
- */
- /**
- * 对话框显示事件,在 show()、showModal() 执行
- * @name artDialog.prototype.onshow
- * @event
- */
- /**
- * 关闭事件,在 close() 执行
- * @name artDialog.prototype.onclose
- * @event
- */
- /**
- * 销毁前事件,在 remove() 前执行
- * @name artDialog.prototype.onbeforeremove
- * @event
- */
- /**
- * 销毁事件,在 remove() 执行
- * @name artDialog.prototype.onremove
- * @event
- */
- /**
- * 重置事件,在 reset() 执行
- * @name artDialog.prototype.onreset
- * @event
- */
- /**
- * 焦点事件,在 foucs() 执行
- * @name artDialog.prototype.onfocus
- * @event
- */
- /**
- * 失焦事件,在 blur() 执行
- * @name artDialog.prototype.onblur
- * @event
- */
-
- /**
- * 设置内容
- * @param {String, HTMLElement} 内容
- */
- content: function (html) {
-
- this._$('content').empty('')
- [typeof html === 'object' ? 'append' : 'html'](html);
-
- return this.reset();
- },
-
-
- /**
- * 设置标题
- * @param {String} 标题内容
- */
- title: function (text) {
- this._$('title').text(text);
- this._$('header')[text ? 'show' : 'hide']();
- return this;
- },
- /** 设置宽度 */
- width: function (value) {
- this._$('content').css('width', value);
- return this.reset();
- },
- /** 设置高度 */
- height: function (value) {
- this._$('content').css('height', value);
- return this.reset();
- },
- /**
- * 设置按钮组
- * @param {Array, String}
- */
- button: function (args) {
- args = args || [];
- var that = this;
- var html = '';
- this.callbacks = {};
- this._$('footer')[args.length ? 'show' : 'hide']();
-
- if (typeof args === 'string') {
- html = args;
- } else {
- $.each(args, function (i, val) {
- val.id = val.id || val.value;
- that.callbacks[val.id] = val.callback;
- html +=
- '<button'
- + ' type="button"'
- + ' data-id="' + val.id + '"'
- + (val.disabled ? ' disabled' : '')
- + (val.autofocus ? ' autofocus class="ui-dialog-autofocus"' : '')
- + '>'
- + val.value
- + '</button>';
- });
- }
- this._$('button').html(html);
-
- return this;
- },
- statusbar: function (html) {
- this._$('statusbar')
- .html(html)[html ? 'show' : 'hide']();
- return this;
- },
- _$: function (i) {
- return this._popup.find('[i=' + i + ']');
- },
-
-
- // 触发按钮回调函数
- _trigger: function (id) {
-
- var fn = this.callbacks[id];
-
- return typeof fn !== 'function' || fn.call(this) !== false ?
- this.close() : this; //@edit: 原来为 ".close().remove()",现在改为".close()" ,去掉 remove 的操作
- }
-
- });
- /** 最顶层的对话框API */
- artDialog.getCurrent = function () {
- return Popup.current;
- };
- /**
- * 根据 ID 获取某对话框 API
- * @param {String} 对话框 ID
- * @return {Object} 对话框 API (实例)
- */
- artDialog.get = function (id) {
- // 从 iframe 传入 window 对象
- if (id && id.frameElement) {
- var iframe = id.frameElement;
- var list = artDialog.list;
- var api;
- for (var i in list) {
- api = list[i];
- if (api.node.getElementsByTagName('iframe')[0] === iframe) {
- return api;
- }
- }
- // 直接传入 id 的情况
- } else if (id) {
- return artDialog.list[id];
- }
- };
- artDialog.list = {};
- /**
- * 默认配置
- */
- artDialog.defaults = defaults;
- // artDialog 定义结束
- $.fn.artDialog = artDialog;
- $.extend({
- artDialog:artDialog
- });
- return artDialog;
- })(jQuery, this);
- var fdj_close = function(returnValue){
- parent.h3FDJ.close(returnValue).remove();
- };
- var showModalDialog = function(url,obj,position,callback,width,height){
- width = width || 970;
- height = height || ($(window).height()-40);
- var div_iframe = $("#dialog_div_fdj");
- if(div_iframe[0] == null){
- div_iframe = $("<div id='dialog_div_fdj' style='display: none'></div>");
- }
- div_iframe.html("<iframe id='dialog_fdj' class='ncDialog' width='100%' height='100%' frameborder=”no” border=”0″></iframe>");
- // div_iframe.html("<iframe class='ncDialog' src='" + url + "' width='100%' height='100%' frameborder=”no” border=”0″></iframe>");
- $("body").append(div_iframe);
- var dialogContent = $(".ncDialog");
- var config = {
- id: "dialog_fdj",
- type: "NC",
- width:width,
- height:height,
- backdropOpacity:0.5,
- content: dialogContent[0],
- drag:false,
- fixed:true,
- lock:true
- };
- if(callback){
- config.onclose = callback;
- }
- window.h3FDJ = $.artDialog(config);
- window.h3FDJ.show();
-
- document.getElementById('dialog_fdj').src = url;
-
- $("#dialog_fdj").load(function(){
- if(dialog_fdj.contentWindow){ //CHROME
- dialog_fdj.contentWindow.dialogArguments = obj;
- }else{ //IE
- dialog_fdj.dialogArguments = obj;
- }
-
- });
- };
- //@ sourceURL=jquery.artDialog.js
|