gpt4 book ai didi

javascript - 有没有办法以与 IE 兼容的方式动态插入绝对定位的 HTML 元素?

转载 作者:行者123 更新时间:2023-11-30 13:37:47 25 4
gpt4 key购买 nike

这是我的 JavaScript 代码:

function BuildObject(container, index, imgFile, left, top, width, height)
{
var newImg = document.createElement('img');
newImg.setAttribute("id","d" + index);
newImg.setAttribute("src", imgFile);
newImg.setAttribute("style", "position:absolute; left:" + left + "px; top:" + top + "px");
newImg.setAttribute("width", width);
newImg.setAttribute("height", height);
container.insertBefore(newImg, container.firstChild);
}

BuildObject(document.body, 1, "pixel.gif", 100, 100, 1, 1);

在谷歌浏览器中,这会生成以下代码作为正文中的第一个元素:

<img id="1" src="pixel.gif" style="position:absolute; left:100; top:100; " width="1" height="1">

这在 Google chrome 中按预期工作,但在 IE 中无效。在 IE 中,它创建元素,但将每个元素相对放置在左上角,彼此相邻。如果我在 HTML 中手动创建标签,IE 会正确定位它们,但如果我使用 JavaScript 则不会。

关于如何动态执行此操作以便它在 IE 中工作,有什么想法吗?

最佳答案

不要像那样设置“style”属性,而是这样做:

newImg.style.position = 'absolute';
newImg.style.left = left + 'px';

等一般来说,像这样使用 setAttribute() 并不是很正确。直接在 DOM 对象上设置属性,除非您使用的是添加到 HTML 标记中的非标准属性。

关于javascript - 有没有办法以与 IE 兼容的方式动态插入绝对定位的 HTML 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3933953/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com