我通過javascript創建了一個表格,一列將包含一個html顏色選擇器。我遇到的問題是,在Chrome中默認值已設置,但顏色選擇器上顯示的顏色爲黑色。當通過js創建HTML5輸入類型的顏色時不顯示值
這是我使用
c = r.insertCell(1);
c.setAttribute('class','second');
inp=document.createElement("input");
inp.setAttribute('type','color');
inp.setAttribute('id','colo_'+i);
inp.setAttribute('value','#ffffff');
inp.setAttribute('class','datafield');
inp.addEventListener('change', saveFields);
c.appendChild(inp);
這是從生成的HTML的JavaScript如果
< TD類= 「第二」 >
< INPUT TYPE = 「彩色」 ID =「colo_0」value =「#8080ff」class =「datafield」>
</td >
這是一個錯誤還是我做錯了什麼?
工作就像一種享受。謝謝 – stephan2307