DOM 更改后无法通过 JavaScript 访问样式

问题描述 投票:0回答:1

当我的页面从包含数据的文件加载时,我会立即动态地将电影图像添加到我的 DOM 中, 但是现在当我尝试访问它们的样式或更改它时,我会返回未定义。

My container that will store the images After my code runs, the images are added to the container My source code What console returns

我尝试使用 MutationObserver 我尝试使用 jQuery

javascript html css web dom
1个回答
0
投票

看起来您正在制作

div
标签,但尝试使用
img
作为类选项来选择
.movies-section
标签。
document.querySelectorAll
不返回任何内容,因为
img
标签没有附加类
movies-section
(据我所知,因为代码未完整发布)。

试试这个:

movieImages = document.querySelectorAll('div .movies-section');

© www.soinside.com 2019 - 2024. All rights reserved.