appendChild doesn't work correctly in IE

和自甴很熟 提交于 2019-11-28 01:23:33

问题


I am trying to create a simple Modal window, but IE isn't cooperating. When I call this function in IE, the content appears at the bottom of the page under all content and the overlay image does not appear. Here's the code:

function applyOverlay(src)
{
  var my_overlay = document.createElement('div');

  my_overlay.setAttribute('id','myoverlay');
  var doc_height = document.body.scrollHeight;
  my_overlay.setAttribute('style','text-align:center; position:fixed; top:0px; left:0px; background-image:url("images/trbg.png"); width:100%; height:'+doc_height+'; z-index:999;');
  my_overlay.innerHTML="<iframe style='background:none;' frameborder=0 height='100%' width='80%' src='"+src+"'><iframe>";
  document.body.appendChild(my_overlay);
}

回答1:


This is common IE issue. It is irritating, but managable.

If document.body.appendChild is executed within the body tag before the body is closed, IE6 will simply not load the page. 7 and 8 will wait until the page is loaded

So, how to approach this issue?

  • wait until the body is loaded, using body.onload.
  • append the element to another element instead of the body tag.

I recommend the second option. Appending elements to another target element will preserve the intended behavior and not change the way you add your elements to the site.



来源:https://stackoverflow.com/questions/6447188/appendchild-doesnt-work-correctly-in-ie

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!