1. 程式人生 > >單選/多選框

單選/多選框

req ctype eth utf required set utf-8 clas cti

<!DOCTYPE>
<!DOCTYPE html>
<html>
<head>
<title>from表單</title>
<meta charset="utf-8"> </head>
<body>
<form method="get" action="">
<p>最喜歡的水果:</p>
1.蘋果<input type="radio" name="f" value="蘋果" checked="checked">
2.橘子<input type="radio" name="f" value="橘子">
3.芒果<input type="radio" name="f" value="芒果"><br>
<br>
<br>
<br>
<p>我喜歡的水果有</p>
1.蘋果<input type="checkbox" name="d" value="蘋果">
2.橘子<input type="checkbox" name="d" value="橘子">
3.芒果<input type="checkbox" name="d" value="芒果"><br>

<br>
<br>
<br>
<form action="" method="get" class="form-example">
<div class="form-example">
<label for="name">Enter your name: </label>
<input type="text" name="name" id="name" required>
</div>
<div class="form-example">
<label for="email">Enter your email: </label>
<input type="email" name="email" id="email" required>
</div>
<div class="form-example">
<input type="submit" value="Subscribe!">
</div>
</form> </form>
</body>
</html>

單選/多選框