HTML input 元素概述

admin發表於2018-11-19

<input>是最為重要的表單元素。

根據type屬性值的不同,它可以表現為不同形式,功能更大相徑庭。

無論以何種形式展現或者何種方式使用,它的功能是輸入資料。

元素的名稱也可以體現它的功能,input翻譯成漢語,具有輸入資料的意思。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title> 
</head>
<body>
  <input type="button" name="bt" value="按鈕">
  <input type="checkbox" name="cb" value="1">
  <input type="text" name="txt">
  <input type="password" name="pw">
  <input type="time" name="time">
  <input type="datetime" name="datetime">
  <input type="month" name="month">
  <input type="date" name="date">
</body>
</html>

僅列舉了一部分元素型別,根據type屬性值的不同,<input>標籤的表現也大相徑庭。