作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 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/
我是一名优秀的程序员,十分优秀!