我不明白为什么这个脚本在Firefox中不起作用

发布于 2025-01-18 04:00:06 字数 1451 浏览 1 评论 0原文

  • 隐藏了父块
  • 如果该脚本没有加载图像的SRC,则
  • 。除了Firefox

之外,所有浏览器都可以使用这是Firefox错误还是脚本问题?如果问题出现在脚本中,我该如何使其在Firefox中起作用?

PS 。在此站点上看不可见此错误。尝试在本地(不使用Internet)在PC上创建 index.html 文件并在此处粘贴此代码,然后在Firefox中查看结果。

let images = document.querySelectorAll('.Parent_block > .Child_Img');

images.forEach(function(e) {
  e.onerror = function() {
    e.closest('.Parent_block').style.display = 'none';
  };
});
.Parent_block {
  width: 30%;
  margin: 0;
  padding: 0;
  margin-left: 10px;
  margin-top: 10px;
  border: 1px solid black;
  display: inline-block;
  height: 250px;
}

img {
  height: inherit;
  width: 100%;
}
<figure class="Parent_block">
  <img class="Child_Img" src="">
  <figcaption class="Img_text">1</figcaption>
</figure>


<figure class="Parent_block">
  <img class="Child_Img" src="https://i.ibb.co/kyXhZmB/photo-2021-11-18-14-40-18.jpg">
  <figcaption class="Img_text">2</figcaption>
</figure>


<figure class="Parent_block">
  <img class="Child_Img" src="">
  <figcaption class="Img_text">3</figcaption>
</figure>

  • This script hides the parent block
  • if it doesn't have the src of the image loaded.
  • Works in all browsers except Firefox

Is this a Firefox bug or a script issue? If the problem is in the script, how can I make it work in Firefox?

P.S. This error is not visible on this site. Try creating an index.html file locally(without using the internet) on your PC and paste this code there, then view the result in Firefox.

let images = document.querySelectorAll('.Parent_block > .Child_Img');

images.forEach(function(e) {
  e.onerror = function() {
    e.closest('.Parent_block').style.display = 'none';
  };
});
.Parent_block {
  width: 30%;
  margin: 0;
  padding: 0;
  margin-left: 10px;
  margin-top: 10px;
  border: 1px solid black;
  display: inline-block;
  height: 250px;
}

img {
  height: inherit;
  width: 100%;
}
<figure class="Parent_block">
  <img class="Child_Img" src="">
  <figcaption class="Img_text">1</figcaption>
</figure>


<figure class="Parent_block">
  <img class="Child_Img" src="https://i.ibb.co/kyXhZmB/photo-2021-11-18-14-40-18.jpg">
  <figcaption class="Img_text">2</figcaption>
</figure>


<figure class="Parent_block">
  <img class="Child_Img" src="">
  <figcaption class="Img_text">3</figcaption>
</figure>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文