javascript表单Form转json进行ajax提交Jquery表单json提交
JavaScript 全选
$("#form").submit(function (e) {
e.preventDefault()
var obj = {}; //声明一个对象
var arr = $(this).serializeArray()
arr.forEach(item => {
obj[item.name] = item.value; //通过变量,将属性值,属性一起放到对象中
})
$.post($(this).attr("action"), obj, function (res) {
if (res.status == 0) {
GZDialog.confirm({
message: "提交成功,是否保留本页?点击否将跳转到列表页",
title: '操作成功',
btnok: "是",
btncl: '否',
btnOkClass: "btn-danger"
}).on(function (isOK) {
// 点击了取消按钮
if (isOK == false) {
// debugger
window.location.href = window.location.pathname.substring(0, window.location.pathname.indexOf("/", 1)) + '/TemplateManage/index'
}
});
}
else
GZDialog.alert(res.message);
//window.location.href = url
});
})
版权声明:本文为YES开发框架网发布内容,转载请附上原文出处连接
post 管理员