为什么这不起作用。这是指select标签中的选项标签。 如果我删除了mouseOver样式的mouseOut样式。
//inside a loop
option[b].onmouseover = Custom.mouseOver;
option[b].onmouseout = Custom.mouseOut;
mouseOver: function() {
this.style.backgroundColor = "#999999";
}
mouseOut: function() {
this.style.backgroundColor = "#e8eff4";
}