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

javascript - Set image width and height with jquery - Stack Overflow

programmeradmin5浏览0评论

I upload an image with the ck editor. When i select and upload the file, the editor automatic write the image width and height.

If i dont write in to this two field manualy 100% and 100%, how can i edit this with jquery? With this code, it writes the width and height to 100%, but the ck editor add these features into style attr.

$('div.content img').attr('width', '100%');
$('div.content img').attr('height', '100%');

How can i modify the img-s style attr with jquery, and set width and height to 100%?

Thank you!

I upload an image with the ck editor. When i select and upload the file, the editor automatic write the image width and height.

If i dont write in to this two field manualy 100% and 100%, how can i edit this with jquery? With this code, it writes the width and height to 100%, but the ck editor add these features into style attr.

$('div.content img').attr('width', '100%');
$('div.content img').attr('height', '100%');

How can i modify the img-s style attr with jquery, and set width and height to 100%?

Thank you!

Share Improve this question asked Jul 25, 2016 at 15:55 Takács ZoltánTakács Zoltán 1173 silver badges15 bronze badges 1
  • 2 By using css(), but is the question how to get ckeditor to do it? – epascarello Commented Jul 25, 2016 at 15:56
Add a ment  | 

3 Answers 3

Reset to default 4

You can just use jQuery's CSS -

$('div.content img').css({
   'width' : '100%',
   'height' : '100%'
});

http://api.jquery./css/

If you need to set the style attributes, you can use jQuery's .css():

$('div.content img').css('width', '100%');
$('div.content img').css('height', '100%');

See https://api.jquery./css/

Have you tried something like this:
$("div.content img").css("cssText", "width: 100% !important;");>
Using jQuery to create the css and using !important to force it to take change

发布评论

评论列表(0)

  1. 暂无评论