1. 程式人生 > >2017年10月24日 第三章 表單

2017年10月24日 第三章 表單

selected button 單選框 選中 max eth 密碼框 網址 輸入文本

1.語法

  <form method="get/post" action="數據向哪提交的地址"

    //表單內容

  </form>

2.input 標簽常用屬性

  <input name="標簽名" type="標簽類型" value="標簽默認值"/>

size:輸入文本框的字符的長度

maxlength:文本框的寬度

checked:單選框和復選框的默認選中

selected

3.常用標簽

text: //文本框

password //密碼框

radio //單選按鈕

checkbox //復選框

button //按鈕

submit //提交按鈕

reset //重置按鈕

url //只能輸入網址

email //只能輸入郵箱

number //只能輸入數字

file //文件域

range //滑塊

search //搜索框

2017年10月24日 第三章 表單