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.
当网站第一次加载时,我很容易用 $('img') 遍历所有图像但是如果网站加载新图像,特别是像 google/bing 图像搜索,是否有某种方法可以捕获事件或其他东西以便处理那些图片也是?
您可以使用 DOM 突变观察器来检测何时<img>添加了新元素。有关更多详细信息,请参阅此 MDN 帖子。您将要查找对象的addedNodes属性MutationRecord。
<img>
addedNodes
MutationRecord