我是靠谱客的博主 懵懂发带,最近开发中收集的这篇文章主要介绍layui.open 通过get提交数据和通过post提交数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. layui.open原生是通过get提交数据的:


var url = "/train/class/stage?" + jQuery.param(stage);
window.layerIndex = layer.open({
type: 2,
title: "编辑阶段",
shadeClose: true,
maxmin: true,
area: size,
content: [url, 'on'],
btn: ['确定','关闭'],
yes: function(index){
var res = window["layui-layer-iframe" + index].callbackdata();
layer.close(index);
},
cancel: function(){
//右上角关闭回调
}
});

2. layui.open通过post提交打开弹层:

参考链接:https://blog.csdn.net/u011752272/article/details/77097663

 $.ajax({
type: 'POST',
url: url,//发送请求
data: stage,
dataType: "html",
success: function (result) {
var htmlCont = result;//返回的结果页面
layer.open({
type: 1,//弹出框类型
title: "编辑阶段",
shadeClose: true,
maxmin: true,
area: size,
content: htmlCont,//将结果页面放入layer弹出层中
btn: ['确定','关闭'],
yes: function(index){
var res = window["layui-layer-iframe" + index].callbackdata();
layer.close(index);
},
});
}
});

 

最后

以上就是懵懂发带为你收集整理的layui.open 通过get提交数据和通过post提交数据的全部内容,希望文章能够帮你解决layui.open 通过get提交数据和通过post提交数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部