jQuery MiniUI

标题: open方式,在分辨率W4600PX H2770PX下无法全屏 [打印本页]

作者: yuleizhuai    时间: 2016-9-5 16:58:24     标题: open方式,在分辨率W4600PX H2770PX下无法全屏

本帖最后由 yuleizhuai 于 2016-9-5 17:02 编辑

分辨率W4600PX H2770PX下,使用
  1. var t;
  2.   function openView(){
  3.                   //mini.alert(guid+name);
  4.                   
  5.                 var url = "/test.html";
  6.                 t = mini.open({
  7.                         url: url,        //页面地址
  8.                         title: name + '的指示',      //标题
  9.                     iconCls: "",    //标题图标
  10.                     width: "100%",
  11.                 height: "100%",
  12.                     allowResize: false,       //允许尺寸调节
  13.                     allowDrag: false,         //允许拖拽位置
  14.                     showCloseButton: false,   //显示关闭按钮
  15.                     showMaxButton: true,     //显示最大化按钮
  16.                     showModal: false,         //显示遮罩
  17.                     showHeader: true,
  18.                     style:"background-color: #254096",
  19.                     bodyStyle:"background-color: #254096",
  20.                     loadingMsg:"",
  21.                     loadOnRefresh: true,       //true每次刷新都激发onload事件
  22.                     onload: function () {       //弹出页面加载完成
  23.                                        
  24.                     },
  25.                     ondestroy: function (action) {  //弹出页面关闭前
  26.                             t = null;
  27.                     }
  28.                 });
  29.                   
  30.   }
复制代码

1)使用此种open方式,无法全屏。

声明变量t的方式,在弹出界面中 增加
  1. <body>
  2.   <button onclick="max()">max</button>
  3. </body>
  4. </html>
  5. <script type="text/javascript">
  6.     mini.parse();
  7.     function max() {
  8.         if (window.parent.t) {

  9.             window.parent.t.max();
  10.         }
  11.     }
  12. </script>
复制代码
2)点击全屏调用父窗口max函数也不行。

3)点击页面header中的最大化小按钮,则可以。

-----请问,如果解决。谢谢



作者: yuleizhuai    时间: 2016-9-5 17:06:14

已解决
var t=mini.open({})
t.max()




欢迎光临 jQuery MiniUI (http://miniui.com/discuss/) Powered by Discuz! X2