html表单通过for循环,萌新提问!!!如何用for循环循环表单?
Posted weixin_39890543
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html表单通过for循环,萌新提问!!!如何用for循环循环表单?相关的知识,希望对你有一定的参考价值。
该楼层疑似违规已被系统折叠 隐藏此楼查看此楼
function submit_() {
var json = "{";
var formdata = document.getElementById("test_form")
for (i = 0; i < formdata.length-2; i++)
{
var key = formdata[i].name;
console.log(key);
json = json + "'" + key + "'"+":";
if (formdata[i].value == null || formdata[i].value == "") {
var value = formdata[i].value;
json = json + "'" + null + "'" + ",";
}
else
{
var value = formdata[i].value;
json = json + "'" + value + "'" + ",";
}
}
json = json + "}";
console.log(json);
$.ajax({
url: "/body/submit",
type: 'post',
data: {formdata:json},
success: function (data)
{
if (data == true)
console.log("添加成功");
}
});
}
以上是关于html表单通过for循环,萌新提问!!!如何用for循环循环表单?的主要内容,如果未能解决你的问题,请参考以下文章