Layui弹出层函数

//评估测试弹出页面
  $("#bodytext").on("click", function() {
    
      layui.use('layer', function(layer){
        //页面层-自定义
          layer.open({
            type: 2,
            title: false,
            closeBtn: 0,
            area:["1000px","600px"],
            shadeClose: true,
            content: ["<%=request.getContextPath()%>/admin/gototextbody"]
              });
        
          });
      });
});

猜你喜欢

转载自blog.csdn.net/qt_lls/article/details/88104331