無意間看到一些沒用過的 input 型式,查了一下資料,決定開始整理一些 HTML 的技術文件
Form 可以用 GET 和 POST 以及用 POST 時可以設定編碼方式用來上傳檔案
<form method="post" enctype="multipart/form-data" action="">
<form method="get" action="">
<fieldset>
<legend>元件</legend>
button <input type="button" name="button" value="button"><br>
checkbox <input type="checkbox" name="checkbox" value="123" checked=""><br>
radio <input type="radio" name="radio" value="123" checked="">
<input type="radio" name="radio" value="456"><br>
range <input type="range" name="range"><br>
color <input type="color" name="color"><br>
</fieldset>
<fieldset>
<legend>表單</legend>
text <input type="text" name="text"><br>
password <input type="password" name="password"><br>
number <input type="number" name="number"><br>
search <input type="search" name="search"><br>
tel <input type="tel" name="tel"><br>
email <input type="email" name="email"><br>
url <input type="url" name="url"><br>
file <input type="file" name="file" accept="text/plain, image/jpeg"><br>
hidden <input type="hidden" name="hidden" value="hidden"><br>
</fieldset>
<fieldset>
<legend>時間相關</legend>
date <input type="date" name="date"><br>
datetime <input type="datetime-local" name="datetime"><br>
time <input type="time" name="time"><br>
week <input type="week" name="week"> 實測結果在 IPhone 上無法使用<br>
month <input type="month" name="month"><br>
</fieldset>
<fieldset>
<legend>表單提交</legend>
image <input type="image" src="https://yiharng.github.io/bomb.png"><br>
reset <input type="reset"><br>
submit <input type="submit"><br>
</fieldset>