layer模态窗简单使用

layer.open({
type: 1,//模态窗种类
skin: "layui-layer-rim",
title: "编辑信息",
area: ["400px", "500px"],
maxmin: true,
//拼接字符串自定义名称
content: '<div><input type="text" name="Name"><input type="button" value="提交" onclick="add()" /></div>'
});


layer.open({
type: 2,//模态窗种类
skin: "layui-layer-rim",
title: "编辑信息",
area: ["400px", "500px"],
maxmin: true,
//拼接字符串自定义名称
content: '/Student/Add'//要加载的页面路径
});

window.parent.location.reload();//关闭当前页

原文地址:https://www.cnblogs.com/LiChen19951127/p/9834883.html