码迷,mamicode.com
首页 > 其他好文 > 详细

如何让EasyUI弹出层跳出框架

时间:2014-08-12 21:35:34      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   cti   div   

这个的解决方法其实挺简单的。

只要在最外面的框架页面加个div,然后用parent.div的id就可以的。但是必须得弹出框得是一个页面。

<div id="div_info"></div>

 

 

//外层弹出框1
 function openFirstWin(url, title, width, height) {
 var strWidth;
 var strHeight;
 if (width == null)
 strWidth = 800;
 else
 strWidth = width;
 if (height == null)
 strHeight = 500;
 else
 strHeight = height;
 if (url != null) {
 //var content = ‘<iframe name=\"first\" scrolling=\"auto\" frameborder=\"0\" src=\"‘ + url + ‘\" style=\"width:100%\;height:100%\;\"></iframe>‘;
 var content = createIFrame(url);
 parent.$(#div_info).window({
 close: false,
 modal: true,
 draggable: false,
 title: title,
 animate: true,
 content: content,
 minimizable: false,
 width: strWidth,
 height: strHeight,
 top: (parent.$(parent.window).height() - height) * 0.5,
 left: (parent.$(window).width() + 200 - strWidth) * 0.5
 });
 }
 return false;
 }

web技术分享

 

如何让EasyUI弹出层跳出框架,布布扣,bubuko.com

如何让EasyUI弹出层跳出框架

标签:style   blog   color   os   io   ar   cti   div   

原文地址:http://www.cnblogs.com/dotnetmvc/p/3908268.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!