html-基本form要素---ShinePans
1717 ワード
<html>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<head><title> </title>
<body>
<form action="logOk.html" method="get">
:
<input type="checkbox" name="cities" value="wuhan">
<input type="checkbox" name="cities" value="shanghai">
<input type="checkbox" name="cities" value="beijing">
<input type="checkbox" name="cities" value="guangzhou">
<br/>
:
<input type="radio" name="sex" value="male">
<input type="radio" name="sex" value="female">
<br/>
<br/>
:
<select name="address" size=3 multiple>
<option value="hubei"> <!-- --></option>
<option value="shanghai"> </option>
<option value="beijing"> </option>
</select>
<br/>
( )<!--cols: ,rows -->
</br>
:
<br/>
<textarea name="mytextarea" cols="60" rows="10">
</textarea><br/>
<br/>
:
<input type="file" name="myfile">
<br/>
<br/>
<br/>
<input type="hidden" name="data" value="ok">
<input type="submit" value=" "/>
<br/>
:
<br/>
<input type="image" src="image.jpg">
</form>
</body>
</html>