<!DOCTYPE html>
<html>
<body>
<form action="demo_form.php" method="post">
<input type="checkbox" name="vehicle" value="Bike"> I have a bike<br>
<input type="checkbox" name="vehicle" value="Car" checked> I have a car<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
问题:
此属性value
如何工作?我在谷歌搜索,但没有找到如何使用复选框value
的例子。如果你能用一个例子来证明,真的很感激。
答案 0 :(得分:1)
您将属性值设置为字符串。然后,如果表单控件成功(即具有名称,已选中且未禁用),则该值将显示在表单数据中(与控件名称相关联)。
请注意,由于您使用的是PHP,因此需要将名称更改为vehicle[]
,以便PHP的表单处理库将提交的值作为数组($_POST['vehicle']
)呈现,而不是丢弃所有值最后一个。
答案 1 :(得分:0)
当您尝试使用
时$_POST['chkname']
然后它将返回该特定'chkname'(复选框)的值。 在这里你必须使用
<input type="checkbox" name="vehicle[]" value="Bike"> I have a bike<br>
<input type="checkbox" name="vehicle[]" value="Car" checked> I have a car<br>
if (isset($_POST['vehicle'])) {
$vehicles = $_POST['vehicle'];
// $vehicles is an array of selected values
}