gpt4 book ai didi

javascript - 寻找一个 jquery 插件来将表单序列化为对象

转载 作者:行者123 更新时间:2023-11-29 20:23:12 25 4
gpt4 key购买 nike

<分区>

我正在寻找一个 jQuery 函数或插件,它使用 param() 支持的深度序列化命名约定将表单输入序列化为一个对象在 jQuery 1.4 中:

<form>
<input name="a[b]" value="1"/>
<input name="a[c]" value="2"/>
<input name="d[]" value="3"/>
<input name="d[]" value="4"/>
<input name="d[2][e]" value="5"/>
</form>

$('form').serializeObject(); // { a: { b:"1",c:"2" }, d: ["3","4",{ e:"5" }] }

原型(prototype)的 Form.serialize方法可以做到这一点。什么是 jQuery 等价物?我找到了 this plugin但它不遵循此命名约定。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com