iframe 显示图片问题

在iframe 的通过src属性直接显示一张图片 发生的怪事???

 

不能加height     width 这些属性。加了这些属性图片就显示不出来

解决: function resize(obj){ 

var ifrm=obj.contentWindow.document.body; 

 ifrm.style.cssText="margin:0px;padding:0px;

overflow:hidden";

  var div=document.createElement("img");

  div.src=obj.src; 

 obj.height=div.height; 

obj.width=div.width;

你可能感兴趣的:(iframe 显示图片问题)