gpt4 book ai didi

php - Jquery数组验证+php

转载 作者:行者123 更新时间:2023-12-01 03:29:13 25 4
gpt4 key购买 nike

我的 html 表单中有一个复选框组。该复选框组包含数组。我的问题是如何使用 jquery 验证复选框数组并在 php 中获取数组值

下面给出的代码

<input type="checkbox" name="go[]"  value="1" /><label>Married</label><br>
<input type="checkbox" name="go[]" value="2" /><label>Widowed</label><br>
<input type="checkbox" name="go[]" value="3" /><label>Single</label><br>
<input type="checkbox" name="go[]" value="4"/><label>Minor</label>

提前致谢。

最佳答案

我认为您正在尝试使用 jQuery 验证插件来确保至少选中您组中的一个复选框。

验证插件不喜欢输入带有括号的名称。在表单的验证方法中尝试一下:

rules: {
'go[]': { //since it has brackets, the name must be in quotes to work
required: true,
minlength: 1
}

关于php - Jquery数组验证+php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1956691/

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