0
4

2 に答える 2

1
  1. リンク。長さIMHOは長さ(小文字)である必要があります
  2. this.setAttribute( "class"、 "a_hover"); (これを使用して、欠落している'"'がありました)

    window.onload = function() {
    links = document.getElementsByTagName("a"); //Getting ALL of the <a> tags
    for(var i = 0; i < links.length; i++) { // 'looping' through the array 'links'
        links[i].addEventListener("mouseover", function() { this.className = "a_hover"; }, false);
    } }​
    

css:

​.a_hover{color:red}​
于 2012-06-13T23:54:32.333 に答える
0
于 2012-06-13T23:45:47.487 に答える