給artDialog 5.02 增加ajax get功能

來源:互聯網
上載者:User

之前用過artDialog 5.0之前版本,非常佩服作者的創意和敬業精神,現在新版的功能朝著輕量級js的方便發展,我還是比較喜歡之前artDialog.open的功能,直接方便。但就是之前版本有點大,我現在只想在artDialog增加一點從ajax get遠程內容,My Code如下:

$.extend({         _htmlDataArr:new Array(),         _findHTML:function(url){            var hd_len= $._htmlDataArr.length;                 for(var i=0;i<hd_len;i++)                 {                     if($._htmlDataArr[i][0]==url){                        return $._htmlDataArr[i][1];                    }                 }             return null;        },        extDialogFrame:function(url,options){                var options=$.extend({okValue:'確定',cancelValue:'取消',lock:true,title:'對話方塊',padding: 0}, options);                options.content='<iframe src="'+url+'" width="'+options.width+'"  height="'+options.height+'" frameborder="2" allowtransparency="true"  marginheight="0" marginwidth="0" ></iframe>';                artDialog(options);        }        ,         extDialogAjax:function(url,options){             var options=$.extend({okValue:'確定',cancelValue:'取消',lock:true,title:'對話方塊'}, options);             //如果存在,則不訪問url             var _get_html= null;//= $._findHTML(url);             if(_get_html!=null){                 options.content=_get_html;                  artDialog(options);            }else{                $.get(url,function(html){                        _new_get_arr= new Array();                        _new_get_arr[0]=url;                        _new_get_arr[1]=html;                        $._htmlDataArr.push(_new_get_arr);                              options.content=html;                          artDialog(options);                });            }    }});

 

調用方法

$.extDialogAjax('url','{artDialog中的參數,content就不用寫了}'};
$.extDialogFrame('url','{artDialog中的參數,content就不用寫了}'};
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.