jQuery SerializeArray() 所有:输入

发布于 2024-10-18 01:53:56 字数 194 浏览 1 评论 0原文

SerializeArray() 仅适用于输入和文本区域。选择、复选框和单选按钮怎么样?我需要知道从选择框中选择了哪个选项以及是否选中了复选框。我们如何才能在数组中获取所有这些信息。

http://jsfiddle.net/bc954/1/

Does serializeArray() only work on input and textarea. how about select, checkbox, and radio buttons. I need to know which option is selected from select box and whether checkbox is checked or not. How can we get all this info in an array.

http://jsfiddle.net/bc954/1/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时常饿 2024-10-25 01:53:56

它应该序列化所有输入、选择、复选框等...我注意到您的某些元素缺少名称,这可能就是您没有看到所有元素被序列化的原因。

<form>
    <input type="text" name="name" value="John"/>    
    <input type="text" name="password" value="password"/>
    <input type="text" name="url" value="http://asd.org/"/>
    <input type="checkbox" value="test" name="chktest" checked="checked"/>    
    <select name="stuff" id="validateAs">
        <option value="letnum">1</option>
        <option value="numbers">2</option>
        <option value="letters">3</option>
        <option value="url">4</option>
        <option value="email">5</option>
    </select>
</form>

像这样的东西应该正确序列化。这是 serializeArray()文档

It should serialize all inputs, select, checkboxe etc...I noticed you were missing names on some of your elements, that could be why you are not seeing all elements being serialized.

<form>
    <input type="text" name="name" value="John"/>    
    <input type="text" name="password" value="password"/>
    <input type="text" name="url" value="http://asd.org/"/>
    <input type="checkbox" value="test" name="chktest" checked="checked"/>    
    <select name="stuff" id="validateAs">
        <option value="letnum">1</option>
        <option value="numbers">2</option>
        <option value="letters">3</option>
        <option value="url">4</option>
        <option value="email">5</option>
    </select>
</form>

Something like this should serialize correctly. Here's the Documentation for serializeArray().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文