我这样写怎么不行呢??
//定义"改变颜色"的函数
function changecolor(ID,COLOR1,COLOR2)
{document.getElementById("ID").style.color="COLOR1";
document.getElementById("ID").style.backgroundColor="COLOR2";
}
<input type="button" value="改变颜色" onclick="changecolor(txt,blue,red)">