最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Internet Explorer adds height- and width-attributes to a newly appended image automatically - Stack Overflow

programmeradmin2浏览0评论

I append a newly created image after it has been loaded to the DOM:

var i = $('<img/>');
i[0].src = '';
i.attr('alt', '');
i.on('load', function() {
    $('body').append(i);            
});

I have set a fixed height for the images in CSS:

img {
    height: 150px;
}

Unfortunately the Internet Explorer adds the width- and height-attributes to the image so it gets heavily distorted. How can I prevent this? Do I have to manually remove the attributes after I append the element?

jsFiddle link

I append a newly created image after it has been loaded to the DOM:

var i = $('<img/>');
i[0].src = 'http://placehold.it/700x300';
i.attr('alt', '');
i.on('load', function() {
    $('body').append(i);            
});

I have set a fixed height for the images in CSS:

img {
    height: 150px;
}

Unfortunately the Internet Explorer adds the width- and height-attributes to the image so it gets heavily distorted. How can I prevent this? Do I have to manually remove the attributes after I append the element?

jsFiddle link

Share Improve this question asked Sep 20, 2013 at 17:54 lampshadelampshade 2,8167 gold badges46 silver badges89 bronze badges 7
  • IE doesn't add tags to the markup, something else is doing it. – TravisO Commented Sep 20, 2013 at 17:59
  • just add width as well !! jsfiddle/aEaEN – Hussein Nazzal Commented Sep 20, 2013 at 17:59
  • 1 @TravisO If you inspect the fiddle you see, that there are the attributes set in IE. – lampshade Commented Sep 20, 2013 at 18:05
  • @codeiz Yes, width set to auto did the trick. I was sure I tested it, but I must missed it somehow. I can't set a fixed width, as the width is unknown. – lampshade Commented Sep 20, 2013 at 18:06
  • IE does not add attributes, but it scales the image so that width : height ratio is not preserved. – Jukka K. Korpela Commented Sep 20, 2013 at 18:12
 |  Show 2 more ments

2 Answers 2

Reset to default 13

Try this:

img {
    height: 150px;
    width: auto;
}

You can either add !important to your css, or remove the width and height attrs.

img {
    height: 150px !important;
}

or

i.height('').width('');

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论