HTML5新增的input型別程式碼演示

antzone發表於2017-03-20

在HTML5中,新增了很多input型別,這也是為了方便開放目的。

下面就通過簡單的程式碼例項進行一下演示。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<body>
<form action="">
  <input type="email" name="email"/><br/>
  <input type="url" name="url"/><br/>
  <input type="number" name="number" min="1" max="100" /><br/>
  <input type="range" name="range" min="1" max="100"/><br/>
  <input type="date" name="date"/><br/><br/>
  <input type="search" name="search" placeholder="螞蟻部落"/><br/>
  <input type="color" name="color" /><br/>
  <input type="submit" value="提交" />
</form>
</body>
</html>

相關文章