我從以前的問題的答案here得到了下面的代碼。我剛剛在Chrome中調試了我的代碼,我得到Uncaught SyntaxError: Unexpected token ILLEGAL on line 6
,但所有的括號都匹配,所以我有點困惑。jquery:在Dropdown中未捕獲的SyntaxError
jQuery(document).ready(function() {
$(".current a").mouseenter(function(){
$(this).siblings("ul").show();
}).mouseout(function(){
$(this).siblings("ul").hide();
});
});
如果你不能調試它 - 刪除代碼並迭代開始編程。逐行添加行,檢查它是否按預期工作。如果它不 - 你肯定知道什麼線路錯誤 – zerkms 2012-04-17 03:37:20
看起來不錯。你確定這是錯誤的根源嗎?如果刪除此代碼,錯誤是否會持續? – Fresheyeball 2012-04-17 03:43:15