layer.open({
type: 2,
title: "Layer回调",
shadeClose: true,
shade: 0.4,
area: ['50%', '50%'],
content: "/Home/Contact",
btn: ['确定', '关闭'],
yes: function (index) {
//当点击‘确定’按钮的时候,获取弹出层返回的值
var res = window["layui-layer-iframe" + index].callbackdata();
//打印返回的值,看是否有我们想返回的值。
if (1) {
alert("提交失败");
} else {
//最后关闭弹出层
layer.close(index);
}
console.log(res);
},
cancel: function () {
//右上角关闭回调
}
});