background image

o)          rowspan(合并行)、colspan(合并列)

p)          <input>是主要的表单元素,type 的可选值:submit(提交按钮)、button(普通按
钮)、

checkbox 表单标签:(复选框)、file(文件选择框)、hidden(隐藏字段)、image(图

片按钮)、

password(密码框)、radio(单选按钮)、reset(重置按钮)、text(文本框)。

十二、

          meta 标签:(包括在 head 标签中。主要用来描述页面自身信息,元信息)

a)   <meta name="keywords" content="新闻,娱乐,八卦"/>

b)          <meta name="description" content="中国最全的八卦新闻"/>

c)           <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />指定网页编码

d)          <meta http-equiv="Refresh" content="3" />三秒钟后刷新此网页。

e)          <meta http-equiv="Refresh" content="3;url=http://www.rupeng.com" />三秒钟后重定向
到新网页。

f)           <meta http-equiv="Cache-Control" content="no-cache" />  禁止浏览器缓存页面。

g)          <meta name="名字" content="值" />关于网页的描述信息。

h)          <meta http-equiv="名字" content="值" />模拟 http 响应头信息。

十三、

          表单:

a)      <form action="" method> 

b)      method = Post / Get

c)       target:表单提交后返回的窗口

d)      encoding:表单的编码方式

e)      length:表单所含元素的数量

f)       reset():重置

g)      submit():提交

h)      事件:onreset; onsubmit;

十四、

          其他标签:

a)   <input type="text" />  type = "radio" "checkbox" "password" "button" "reset" "file" "hidden" 
"image"

b)   <select><option value="123">123</option></select>

c)   <textarea rows="10" cols="30"></textarea>

d)      Text:size 宽度 value 值 maxlength 最大长度 readonly="readonly" 只读 

e)      Select:size 上下宽度 multiple 多选 <option>选项 <option selected="selected">选中

 

<optgroup label="111"><option>...</optgroup>分组