这里改变大小?我找不到合适的方法
var img = new Image();
img.src = newImg.ImagePath;
答案 0 :(得分: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');
答案 1 :(得分:1)
100px x 100px
图片。
var img = new Image();
img.src = newImg.ImagePath;
img.width = 100;
img.height = 100;