代码一直返回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");
}
});