方法用途:

获取表单内的所有有name的所有数据框,在非表单提交需要挨个遍历组装数据的情况下很好用

ps:需要jQuery支持

var twoform = $("#editProductActivityForm").serializeArray();(//id为表单id)

var newmsg = {};
$.each(twoform, function() {
if (this.value) {
newmsg[this.name] = this.value;
} console.log(newmsg);//以上代码生成json对象
04-23 17:52