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')