我需要帮助来理解javascript中的某些代码吗?

时间:2019-07-08 15:59:45

标签: javascript

我不理解程序中有关房间图像库的表达。 程序中的肉是什么意思?

  previews.forEach(preview => {
    preview.addEventListener("click", function() {
      const smallSrc = this.src;
      const bigSrc = smallSrc.replace("small", "big");
      previews.forEach(preview => preview.classList.remove("room-active"));
      highlight.src = bigSrc;
      preview.classList.add("room-active");
    });
  });

0 个答案:

没有答案