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.
我在这个网站上工作:链接
在现代浏览器中一切正常,但在 IE8 中,如果我单击左侧菜单中的加号,则会出现错误。
错误在这个js的52.行:js
content = $(link).parent();
错误是
Object doesn't support property or method
看了你的剧本,
togglemenu($(this)); function togglemenu(link){ content = $(link).parent(); ... ... }
你可以直接拥有
content = link.parent();
那么content在我能看到的任何地方都没有定义,也许这就是问题所在?
content
尝试这个-:
$(link).closest('your closest parent')
文档= http://api.jquery.com/closest/