1. 程式人生 > >HTML5新結構標籤和移動端頁面佈局

HTML5新結構標籤和移動端頁面佈局

2、HTML5 新增表單控制元件:網址 郵箱 日期 時間 星期 數量 範圍 電話 顏色 搜尋
  <label>網址:</label><input type="url" name="" required><br><br> 
  <label>郵箱:</label><input type="email" name="" required><br><br> 
  <label>日期:</label><input type="date" name=""><br><br> 
  <label>時間:</label><input type="time" name=""><br><br> 
  <label>星期:</label><input type="week" name=""><br><br> 
  <label>數量:</label><input type="number" name=""> <br><br>
  <label>範圍:</label><input type="range" name=""><br><br> 
  <label>電話:</label><input type="tel" name=""><br><br> 
  <label>顏色:</label><input type="color" name=""><br><br> 
  <label>搜尋:</label><input type="search" name=""><br><br>
新增常用表單控制元件屬性:
  1、placeholder 設定文字框預設提示文字
  2、autofocus 自動獲得焦點
  3、autocomplete 聯想關鍵詞