我不理解程序中有关房间图像库的表达。 程序中的肉是什么意思?
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");
});
});