var myh = document.getElementById("con");
var mydiv = document.getElementById("txt");
//定义"改变颜色"的函数
function changeColor(){
mydiv.style.color="red";
mydiv.style.backgroundColor="#ccc";
}
可以的