layer.open随父窗口滚动条滚动
fixed 固定 |
类型:Boolean ,默认:true 即鼠标滚动时,层是否固定在可视区域;如果不想,设置 fixed: false 即可 |
scrollbar 是否允许浏览器出现滚动条 |
类型:Boolean ,默认:true 默认允许浏览器滚动,如果设定 scrollbar: false ,则屏蔽 |
layer.open({
type: 2,
shade: false,
area: '500px',
maxmin: true,
fixed: false,// 此项为false时,支持父窗口滚动条和鼠标滚动
content: 'http://www.layui.com',
zIndex: layer.zIndex, //重点1
success: function(layero){
layer.setTop(layero); //重点2
}
});