这是我的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);
在Google Chrome中,这会生成以下代码作为正文中的第一个元素:
<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中工作的任何想法?
答案 0 :(得分:3)
不要像这样设置“样式”属性,而是执行此操作:
newImg.style.position = 'absolute';
newImg.style.left = left + 'px';
等。一般情况下使用setAttribute()
这样的方法并不正确。直接在DOM对象上设置属性,除非您使用HTML标记中添加的非标准属性。