Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有时会收到一个错误...
未捕获的错误:语法错误,无法识别的表达式:div。
代码是
divs.filter('div.' + menuID).show('slide', {direction: 'right'}, 200);
我也试过
divs.filter('.' + menuID).show('slide', {direction: 'right'}, 200);
menuID 为 null,或者当强制转换为字符串时变为 '' 的其他内容。
您应该添加保护以确保在 menuID 为 null、未定义或空字符串时不会运行此代码。