0

我的代码中没有什么问题,我确定它什么都没有,但我找不到它。

有人可以帮助我吗?

我明白了:

Uncaught SyntaxError: Unexpected identifier

$(document).ready(function(){
    $('#zone1').mouseover(function(){
        $('#cercle2-1').fadeIn(200);
    }
    $('#zone1').mouseout(function(){
        $('#cercle2-1').fadeOut(200);
    }
});

先感谢您。

4

1 回答 1

1

该代码缺少两个右括号来关闭函数调用。

  $(document).ready(function(){
      $('#zone1').mouseover(function(){
        $('#cercle2-1').fadeIn(200);
      }); //Need right paren and semi to finish statement
      $('#zone1').mouseout(function(){
        $('#cercle2-1').fadeOut(200);
      }); //Need right paren and semi to finish statement
  });
于 2013-01-15T10:02:30.053 回答