layui弹出层layer.open 中的content问题

隐身守侯 提交于 2020-08-15 15:49:56

 

 

如果content取的的事当前页面元素内容时,type类型应该为1
layer.open({
type: 1,
title: '内容区域',
 content: $('#DIV_EditUserInfo'),    // 设置跳转的div,跳转到对应的页面
area: ["920px", "250px"],
});

如果content取的的路径,或者某个页面,type类型应该为2
layer.open({
type: 2,
title: "内容区域",
content: 'UserInfoEdit.html?actionType=new',    // 设置跳转的url,跳转到对应的页面
area: ["1500px", "100%"],
});













 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!