【代碼世界 No.4】前端三劍客 - HTML 2 特殊標(biāo)簽及表單
列表標(biāo)簽
無(wú)序列表:
<ul type="none">
? ??<li>context </li>
</ul>
屬性:?type: circle , squre, disc實(shí)心圓
有序列表:
<ol??type="a" start="3">
? ? ?<li>context</li>
</ol>
屬性:?type: 1, a, A, I, i, none, start:
鏈接標(biāo)簽
<a href=“url”??target=‘“> context </a>
錨鏈接:href=“#id名 ”本頁(yè)面內(nèi)跳轉(zhuǎn)
target表示調(diào)取方式,打開(kāi)新窗口或者直接跳
表格
<table?屬性>
<tr>行
?????<tb?屬性>單元格
????</tb>
</tr>
</table>
tb可以被th標(biāo)簽替換表示標(biāo)題,自動(dòng)加粗居中

表單
<form action="提交地址" method="get/post"??name="表單名稱">???get可見(jiàn),post不可見(jiàn)
- 文本框:
????賬號(hào):<input?type="text"?name="userNames"?id="d1"?value="初始默認(rèn)值"?
?????????maxlength="最大長(zhǎng)度"??size="文本框長(zhǎng)度"?readonly="readonly">
- 密碼框:
???密碼:?<input?type="password"?name="mima"??value="初始默認(rèn)值">
???????????其他屬性與文本框相同
- 隱藏文本框:
<input type="hidden" name=""??value="data">?不可見(jiàn)但可用
- 單選項(xiàng)
???????<input type="radio"??name="sex"??value="1">?男??同組單選鈕name要相同
???????<input type="radio"??name="sex"??value="0"??checked>?女
- 多選項(xiàng)
??????<input type="checkbox"??name="a"??value="1"??checked>?選項(xiàng)一
??????<input type="checkbox"??name="a"??value="2"??>?選項(xiàng)二
??????<input type="checkbox"??name="a"??value="3"??>?選項(xiàng)三
- 文件域
??????<input type="file"??name="wj"??>??不可以設(shè)置value默認(rèn)值
- 提交按鈕
??????<input type="submit" value="點(diǎn)擊提交">
- 圖片按鈕
??????<input type="image"??src="圖片url">
- 重置按鈕
??????<input type="reset"??value="點(diǎn)擊重置"??width="200">
- 普通按鈕
??????<input type="button"??value="本身沒(méi)用,需要結(jié)合qit">
?
?
表單框
???<fieldset>
<legend>?表單框提示內(nèi)容?</legend>
??框內(nèi)內(nèi)容
???</fieldset>