如何让EasyUI弹出层跳出框架 WEB开发分享
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何让EasyUI弹出层跳出框架 WEB开发分享相关的知识,希望对你有一定的参考价值。
参考技术A easyui layoutvar width = $(window).width()-80;
var height = $(window).height()-120;
stView_layout = $('#stView_layout').layout(
width: width,
height: height
);
station_view = $('#stationView').window(
title: '测站导航',
left:50,
top:80,
width: width,
modal: false,
shadow: false,
closed: true,
height: height,
onResize:function(w,h)
if(stView_treegrid)
stView_treegrid.treegrid(
width:w-20,
height:h-260
);
);本回答被提问者和网友采纳
解决session过期跳转到登录页并跳出iframe框架(或者layui弹出层)
当用户长时间停留在管理界面没有操作,等到session过期后,进行了操作,那么只是iframe跳转到login页面,这不是我们想要的结果。解决方法:在login页面加一个逻辑判断:
<script > $(document).ready(function () { if (window != top) { top.location.href = location.href; } }); </script>
以上是关于如何让EasyUI弹出层跳出框架 WEB开发分享的主要内容,如果未能解决你的问题,请参考以下文章
如何让jqueryEasyUI里面的dialog弹出层跳出iframe框架在最外层显示以防止拖动时部门被遮住之后无法拖动
解决session过期跳转到登录页并跳出iframe框架(或者layui弹出层)