表單標籤

星河落發表於2020-11-09

1.表單域<form>:表單域裡的資訊要提交給伺服器

2.表單標籤:<inout/> <select>下來</select> <textarea></textarea>文字域
3. 提示資訊

1.<input type="text"/>賬號顯示
<input type="password" />密碼隱藏
type:含義是型別
<form>:文字

性別:<input type="radio"name="sex"/>
radio:實現二選一,name必須一致
<input type="checkbox"/>愛好單選格式
checkbox:意。義為:勾選框(多選)
button" value按鈕
value:文字值
reset重置按鈕
submit:提交按鈕《提交至伺服器》
完整演示:<input type="button" value="登入"/>
<select></select>下拉按鈕
<option></option>下來按鈕的文字輸入內容
<textarea></textarea>:文字域-用來輸入多數文字文字

相關文章