复选框始终返回true

时间:2014-11-06 19:56:16

标签: php checkbox

代码一直返回true的原因是什么?

<input type="checkbox" name="item1" id="item1" value="true">
<input type="checkbox" name="item2" id="item2" value="true">

我的print_r($ _ POST)返回:

Array
(
    [item1] => true
    [item2] => true
)

虽然没有选中复选框......

感谢您的帮助。

-

更新:

我在代码中找到了:

我有可能这是问题吗?

$.(".checkbox input[type='checkbox'], .radio input[type='radio']").each(function() {
    if ($.(this).is(":checked")) {
        $.(this).closest(".checkbox").addClass("checked");
        $.(this).closest(".radio").addClass("checked");
    }
});
$.(".checkbox input[type='checkbox']").bind("change", function() {
    if ($.(this).is(":checked")) {
        $.(this).closest(".checkbox").addClass("checked");
    } else {
        $.(this).closest(".checkbox").removeClass("checked");
    }
});

0 个答案:

没有答案