x
1
<img class="my-image" src="https://wikipedia.org/static/images/project-logos/frwiki-1.5x.png">
2
3
<script>
4
var myImage = document.querySelector('.my-image');
5
fetch('https://upload.wikimedia.org/wikipedia/commons/7/77/Delete_key1.jpg')
6
.then(res => res.blob())
7
.then(res => {
8
var objectURL = URL.createObjectURL(res);
9
myImage.src = objectURL;
10
});
11
</script>
12