0

我从这里上一个问题的答案中得到了以下代码。我刚刚在 Chrome 中调试了我的代码,我得到了,Uncaught SyntaxError: Unexpected token ILLEGAL on line 6但是所有的括号都匹配,所以我有点困惑。

jQuery(document).ready(function () {
    $(".current a").mouseenter(function(){
       $(this).siblings("ul").show();
    }).mouseout(function(){
       $(this).siblings("ul").hide();
    });​
});​
4

2 回答 2

0

看起来很疯狂,上面的错误是由关闭后的额外行或空格引起的;

于 2012-04-17T03:48:07.787 回答
-2
$(document).ready(function () {
$(".current a").mouseenter(function(){
   $(this).siblings("ul").show();
}).mouseout(function(){
   $(this).siblings("ul").hide();
});​

});​</p>

用 $ 替换 jQuery

于 2012-04-17T03:41:37.363 回答