jsダイナミック追加clasname


今日は間違いなくqqの撮影のソースコードの文字列を見ました.このようなコードは動的にclasnameを追加することができます.
<script type="text/javascript">
window.onload = function () {
 var ulBox = document.getElementById("content");
 var list = ulBox.getElementsByTagName("li");
 for (var i=0; i<list.length; i++) {
  list[i].onmouseover=function() {
   this.className="hover";
  }
  list[i].onmouseout=function() {
   this.className="";
  }
 }
}
</script>