$(".menu-xq").on('click', function() { layui.use('layer', function(){ var layer = layui.layer; layer.open({ type: 1, title: '作品简介', area: '100%', offset: 'b', shadeClose :false, anim: 2, scrollbar :true, content: $('.product-details'), //这里content是一个DOM,注意:最好该元素要存放在body最外层,否则可能被其它的相对元 cancel: function(index, layero){ $('.product-details').hide(); } }); }); }) $(".menu-comment").on('click', function() { layui.use('layer', function(){ var layer = layui.layer; layer.open({ type: 2, area:['100%','400px'], offset: 'b', shadeClose :false, anim: 2, scrollbar :true, content: 'https://m.yalayi.com/e/dongpo/com/ping.php?proId=0&pro=Pic', title:'共有0条评论' }); }); })