返回列表 發帖

HTML type 屬性

輸入 email
  1. <input type="email">
複製代碼
多選的勾選框
  1. <input type="checkbox">
複製代碼
單選 input
  1. <input type="radio">
複製代碼
輸入密碼
  1. <input type="password">
複製代碼
輸入電話
  1. <input type="tel">
複製代碼
選取範圍
  1. <input type="range">
複製代碼
搜尋框
  1. <input type="search">
複製代碼
選擇時間
  1. <input type="time">
複製代碼
上傳檔案
  1. <input type="file">
複製代碼
選擇顏色
  1. <input type="color">
複製代碼
按鈕
  1. <input type="button" value="按鈕”>
複製代碼
重置按鈕
  1. <input type="reset">
複製代碼
選擇月份
  1. <input type="month">
複製代碼
輸入 url
  1. <input type="url">
複製代碼

返回列表