我想要更改颜色选择器值。 像这样 $( '#headcolor')VAL( '#e2e2e2');
<input id="headcolor" type="color" />
我需要帮助:(抱歉我的英文
答案 0 :(得分:0)
您可以使用以下JavaScript代码执行此操作:document.getElementById("headcolor").value="#e2e2e2";
参考:http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_color_value
希望它有所帮助!
答案 1 :(得分:0)
在这里,我展示了使用颜色选择器改变文本的颜色
<html>
<body>
<input id="headcolor" type="color" onchange="func()"/>
<p id="temp">Click the button to change the value of the text field.</p>
<script>
function func() {
document.getElementById("temp").style.color = document.getElementById("headcolor").value;
}
</script>
</body>
</html>
工作JsFiddle