关于layer弹出窗随着窗口改变得问题解决
设置好固定的弹出窗,正常,但是点击浏览器
就会出现弹出高度改变
layer弹出的是一个新的页面,所以写两个js
一个是parent.js
一个是son.js
parent.js的layer代码如下
layer.open({ type : 2, zIndex : 1000, // shade : 0.5, title : ['标题','background:#6a90e5'], area : [width, height], resize:true,//禁止拖拉框的大小 fix : true, // 固定 maxmin : false, offset : top, closeBtn: 1, content : [ctx,'no'], })
son.js代码如下
$(window).resize(function(){ productApplyCls.resizeLayer(); }); resizeLayer:function(){ var index = parent.layer.getFrameIndex(window.name); parent.layer.style(index,{ height:"381" }); }