使用jquery设置图像宽度和高度

时间:2016-07-25 15:55:31

标签: javascript jquery html css

我使用ck编辑器上传图像。当我选择并上传文件时,编辑器会自动写入图像的宽度和高度。

如果我不写100%和100%这两个字段,我怎么能用jquery编辑呢?使用此代码,它将宽度和高度写入100%,但ck编辑器将这些功能添加到样式attr。

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

如何使用jquery修改img-s样式attr,并将width和height设置为100%?

谢谢!

3 个答案:

答案 0 :(得分:3)

您可以使用jQuery的CSS -

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

http://api.jquery.com/css/

答案 1 :(得分:2)

如果需要设置样式属性,可以使用jQuery的.css():

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

请参阅https://api.jquery.com/css/

答案 2 :(得分:0)

你有没有试过这样的事情:
$("div.content img").css("cssText", "width: 100% !important;");>
使用jQuery创建css并使用!important来强制它进行更改