Добавить атрибут данных в тег изображения
<img id="myImg" data-src="bigimage.png" src="smallimage.png" alt="This is the caption" />
и измените код следующим образом:
// Get the modal
var modal = document.getElementById('myModal');
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function() {
modal.style.display = "block";
// modalImg.src = this.src;
modalImg.src = this.getAttribute("data-src");
captionText.innerHTML = this.alt;
}