代码示例:(标识:eg_html_input_color)
<!DOCTYPE html>
<html>
<body>

<p>
Depending on browser support:<br>
A color picker can pop-up when you enter the input field.
</p>

<form action="/Index/Demo/demo_form_current.html">
  Select your favorite color:
  <input type="color" name="data" value="#ff0000">
  <input type="submit">
</form>

<p><b>Note:</b> type="color" is not supported in Internet Explorer.</p>

</body>
</html>
运行结果: