layer 弹出层弹出后自动最大化

 
var index = layer.open({
                type: 2,
                title: ‘标题’,
                id:'TWork',
                maxmin: true,
                area: ['800px', '600px'],//宽高不影响最大化
                content: url,//地址
                success: function (layero, index) {

                },
                end: function () {

                }
            });
//只需要加这一句就可以啦
layer.full(index);

 

你可能感兴趣的:(Layui,JS)