我正在尝试制作一个下拉菜单,在firefox中运行正常 它在其他浏览器中不起作用
收到以下错误:
jQuery(".parent").hover( function () {
jQuery(this).toggleClass("activeli").(".parent").stop(true, true).slideToggle(); << error line
});
答案 0 :(得分:3)
问题是toggleClass("activeli").(".parent")
可能应该是。
jQuery(this).toggleClass("activeli").find(".parent").stop(true, true).slideToggle();