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.
親ノードを取得し、そのノード名を取得してから、目的のノード名と比較します。何かが(他の種類のアンカーではなく)リンクであることを確認するには、hrefプロパティが入力されているかどうかをテストします。
node.parentNode.nodeName.toLowerCase() === 'a' && node.parentNode.href !== "";
YUIを使用している場合は、imgNode.ancestor().test('a')。
imgNode.ancestor().test('a')