JavaScript HTML DOM Input Color 对象
-
Input Color 对象
Input Color对象表示带有type=“color”的HTML <input>元素。注意: Internet Explorer 11及更早版本或Safari 9.1及更早版本不支持type=“color”的<input>元素。您可以使用getElementById()访问type=“color”的<input>元素:
尝试一下var x = document.getElementById("myColor");
提示:您还可以通过搜索表单的elements集合来访问<input type =“Color”> 。您可以使用document.createElement()方法创建一个带有type=“color”的<input>元素:
尝试一下var x = document.createElement("INPUT"); x.setAttribute("type", "color");
-
-
-