iframe標(biāo)簽 :用于嵌套頁面,name屬性可以與a標(biāo)簽關(guān)聯(lián)使用
a標(biāo)簽:target="_block"打開新頁面,target="_self"打開自身,target="_parent"打開父級,target="_top"打開祖先最頂層的;
download屬性用于下載
herf="javascript:;"用于不做跳轉(zhuǎn)
form標(biāo)簽:
主要用來發(fā)起post請求,如果使用get請求,表單數(shù)據(jù)內(nèi)容會暴露在url里。
action 屬性規(guī)定當(dāng)提交表單時,向哪里發(fā)送表單數(shù)據(jù)。
input標(biāo)簽:type="button"為普通按鈕,type="text"文本輸入框,type="password"密碼輸入框,type="checkbox"多選框,type="radio"單選框,type="submit"提交按鈕
button標(biāo)簽:如果沒有type,會默認(rèn)升級為submit提交按鈕,如果type="button",為普通按鈕,提交失效。
table標(biāo)簽:colgroup 可以控制每一列的寬度
<colgroup>
<col width=100>
</colgroup>