//改变html内容
document.getElementById("id").innerHTML="新内容";
//改变html属性
document.getElementById("image").src="新src.jpg";
//改变css样式
document.getElementById(id).style.color="blue";
还是上菜鸟上面看吧http://www.runoob.com/jsref/dom-obj-document.html