介绍
这期内容当中小编将会给大家带来有关layui中怎么在弹出层显示数据,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
layui怎么对弹出层显示数据吗?下面给大家举个例子:
点击查看function func11() { console.log($.cookie("id")); //iframe窗 layer.open({ type: 2, title: false, shade: [0.5], title: '商品简介', shadeClose: true, shade: 0.5, skin:'demo-class', maxmin: true, //开启最大化最小化按钮 area: ['1000px', '660px'], shift: 2, content: 'product.jsp?id=<%=rs.getInt(“id”)%>', //iframe的url, });}
错误:id号传不过去,页面跳转之后接收的id不正确,所以显示的页面不正确。
错误原因:变量的作用域有问题。在上面的rs不能传到func11()方法里面,所以传递的参数有问题。
解决方法:在func11()函数中添加一个参数,将id这个参数在点击事件里添加进去。
修改后的代码:
);">点击查看function func11(x) { $.cookie("id",x); console.log($.cookie("id")) //iframe窗 layer.open({ type: 2, title: false, shade: [0.5], title: '商品简介', shadeClose: true, shade: 0.5, skin:'demo-class', maxmin: true, //开启最大化最小化按钮 area: ['1000px', '660px'], shift: 2, content: 'product.jsp?id=' + $.cookie("id"), //iframe的url }); }
上述就是小编为大家分享的layui中怎么在弹出层显示数据了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注行业资讯频道。