0

在这里改变大小?我找不到正确的方法

var img = new Image();
img.src = newImg.ImagePath;
4

2 回答 2

2
$(img).width(width_in_pixels).height(height_in_pixels);

$(img)也可以使用$('selector'). 如果你想创建一个新的,使用这个:

$('<img/>', {src: 'url to the image'}).width(width_in_pixels).height(height_in_pixels).appendTo('#someElement');
于 2012-06-14T05:41:21.190 回答
1

一个100px x 100px图像。

var img    = new Image();
img.src    = newImg.ImagePath;
img.width  = 100;
img.height = 100;
于 2012-06-14T05:44:08.743 回答