如何在提交之前从表单serialize()获取和替换数据?

时间:2015-04-24 22:04:02

标签: jquery forms serialization

我需要使用jQuery提交表单,但在提交之前我想要更改其中一个表单字段的值,而不用显示对用户的更改。我知道这不是最好的方法,但我的软件要求。

目前我使用:

var submit = $("#submitform").serialize();

序列化数据,然后使用

提交
$.post('/post', submit)

我的序列化数据是:

entry%5Bbody%5D=hello+and+welcome&addedContexts=presentation&context=prese ntation&selectedContexts=&statementid=&timestamp=

我只是想将entry%5Bbody%5D的值更改为其他内容。

我知道我可以在字符串上使用正则表达式(我找不到哪个?),但也许您知道更优雅的解决方案?比如首先序列化表单,然后反序列化它,改变我需要的值,然后再次序列化它?

谢谢!

1 个答案:

答案 0 :(得分:12)

使用$("#submitform").serializeArray()并搜索数组中name属性等于"entry[body]"的项目并编辑其value属性。

// convert form data to array
var data = $("#submitform").serializeArray();

// edit data here
// using ES6
data.find(item => item.name === 'entry[body]').value = "something else";
// OR using ES5
data.forEach(function (item) {
  if (item.name === 'entry[body]') {
    item.value = "something else";
  }
});

// then POST
$.post('/post', $.param(data));