前端開發之html基礎知識02

來源:互聯網
上載者:User

標籤:checkbox   tab   使用者體驗   eset   put   form 表單   eth   input   sele   

經典表格:表格沒有列的概念,只有行的概念, 一行 tr,行中的儲存格 td
表頭的反白:tr>th

<table width="400px" align="center" border="1px" cellspacing="0"
cellpadding="5px"
> <!-- align = "center" 表格整體劇中-->
<caption>個人資訊表</caption>
<thead>
<tr align="center">
<td>姓名</td>
<td>性別</td>
<td>電話</td>
</tr>
</thead>
<tbody>
<tr align="center">
<td>小明</td>
<td>男</td>
<td>187</td>
</tr>
<tr align="center">
<td>小紅</td>
<td>女</td>
<td>157</td>
</tr>
</tbody>
</table>

表格其他設定:單元邊框和表格邊框的距離-> cellspacing 0

合併儲存格:
跨行rowspan
跨列colspan

表單控制項

<label for="i1">使用者名稱<input type="text" id = i1></label>
label 標籤用於點擊標籤即可跳轉到輸入框,提高使用者體驗

文本域,不支援富文本:<textarea name="" id="" cols="3" rows="5" ></textarea>

下拉式功能表:select>option
<select name="" id="">
<option value="">1992</option>
<option value="">1993</option>
<option value="">1994</option>
<option value="">1995</option>
</select>

input屬性: 提示: checked = "checked" 為單選預設選中狀態 maxlength = 6

text
password

radio單選需要在每個選項中 name的值保持一致
<label for=""><input type="radio" name="gender">男</label>
<label for=""><input type="radio" name = "gender">女</label>

checkbox多選
<label for=""><input type="checkbox" name = “like1”>籃球</label>
<label for=""><input type="checkbox" name = “like2”>足球</label>
<label for=""><input type="checkbox" name = “like2”>排球</label>

btton按鈕
submit提交
reset重設
image
file

form 表單:
<form action="http://baidu.com" method="get" name = "mydata">

前端開發之html基礎知識02

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.