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/