form
<form action = "http://xxx.php" method = "POST">
<!-- 表单内容 -->
</form>
注释:
- action:web服务器的地址
- method: 请求方式
- form中是表单内容
控件
<input name = "name" type = "text"/>
input type属性值
<select name = "name">
<option value = "xiaoming"> 小明 </option>
</select>
textarea
网友评论