今天自习了一天,看了看后面java web的内容,一直在讲案例,标签也很多,记不住,而且编写网页的时候也不报错,但是一打开跟想象中的页面就不一样,也没个什么提示什么的,很打脑壳。
form 表单标签:
常用属性
action:提交的路径
method:提交的方式(get和post)
常用子标签
input
select
textarea
input标签
常用属性:
type:
text
password
radio
checkbox
file
submit
reset
button
hidden
image
name:
要想将信息提交到服务器必须提供name属性
将单选框和复选框设置成一组
value:
text password 设置默认值
radio checkbox 设置选中后提交的值
submit reset button 给按钮起个显示的名字
select:下拉选
<select name="">
<option value="">显示的名字</option>
</select>
textarea:文本域
<textarea cols="" rows="" name="">默认值</textarea>
给单选框多选框设置默认值
设置属性 checked="checked"
给下拉选设置默认值
设置属性 selected="selected"
|
|