我在Magento网上商店有一个代码(不是我写的):
if (Counter == 0) {
document.getElementById('colorsss').innerHTML = "choose color";
}
document.forms[1].colorsss.options[document.forms[1].colorsss.options.length] = new Option(thisText, thisId);
Counter++;
此代码将可选项放入一个简单的html dropdwon选择器。 我怎么能修改这个,我希望每行显示不同的颜色?
如果需要任何代码,我可以写它。
答案 0 :(得分:1)
使用此Javascript:
function updateTextColourrow1(value){
document.getElementsByClassName("style8")[0].style.color="#"+value;
}
function updateTextColourrow2(value){
document.getElementsByClassName("style8")[1].style.color="#"+value;
}
<强> Fiddle 强>