表單名稱 | 表單實際樣式 | HTML語法 |
文字表單 | <input type="text" name="page"> | |
密碼表單 | <input type="password" name="password"> | |
單選表單 | 男 女 | <input type="radio" name="password" value="男">男 |
複選表單 | 一年級 二年級 | <input type="checkbox" name="class" value="一年級">一年級 |
檔案表單 | <input type="file" name="file"> | |
下拉式表單 | <select name="class" size="1"> <option value="一年級">一年級 <option value="二年級">二年級 </select> | |
文字區塊表單 | <textarea cols="" rows="" name="content">嗨!</textarea> | |
隱藏表單 | <input type="hidden" name="ip" value=""> | |
送出按鈕 | <input type="submit" value="送出按鈕"> | |
清除按鈕 | <input type="reset" value="清除按鈕"> |
<form action="mail.php" method="post" target="_blank">
<textarea name="content"></textarea><br>
<input type="submit" value="送出按鈕">
</form>
會產生如下表單:
沒有留言:
張貼留言