我从这里上一个问题的答案中得到了以下代码。我刚刚在 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();
});
});