方法步骤:
先获取要改变css的元素。
改变这个元素的style属性。
eg:下面是改变div的背景色,改为蓝色。
div{width:200px;height:200px;background:#f00;}
var div = document.getElementsByTagName("div");
div.style.background = "blue";
有三种方法:直接改变样式、改变className和改变cssText
改变className: document.getElementById('obj').className="…"
改变cssText:document.getElementById('obj').style.cssText="width:20px; border:solid 1px #f00;";
改变直接样式: document.getElementById('obj').style.backgroundColor="#003366″
你只要把超链接鼠标经过属性的颜色改下就可以实现了
js改变 class 就ok了