我正在尝试将其中包含图像源的 DIV 添加到 HTML 中。在我尝试更改上面添加的 DIV 的属性之后。但我不能这样做。选中后,DIV 将显示在浏览器开发工具中。我得到的错误是“无法读取 null 的属性'样式'”。下面是我的代码。提前致谢。
ajaxLoaddiv='<div class="LoadingImage" alt="example" style="display: none"> <img src="css/ajax-loader.gif"></div>';
$(ajaxLoaddiv).appendTo(attachPoint);
document.getElementById("LoadingImage").style.display = 'block';
attachpoint 是我得到的 html 中的引用。
var attachpoint=document.querySelector('.buttonAttachPoint');