var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://supersweetdomainbutnotcspfriendly.com/image.png',true);
xhr.responseType = 'blob';
xhr.onload = function(e) {
var img = document.createElement('img');
img.src = window.URL.createObjectURL(this.response);
document.body.appendChild(img);
};
xhr.send();
通过使用这个我可以得到图像,但默认大小。所以请告诉我如何设置该图像的宽度和高度?
答案 0 :(得分:0)
您可以在var img = document.createElement('img');
img.setAttribute('width', '100');
img.setAttribute('height', '100');