<!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
复选框的示例。如果您可以举例说明,非常感谢。