Refresh image with a new one at the same url

后端 未结 19 3282
南旧
南旧 2020-11-21 22:00

I am accessing a link on my site that will provide a new image each time it is accessed.

The issue I am running into is that if I try to load the image in the backgr

19条回答
  •  清酒与你
    2020-11-21 22:44

    Try using a worthless querystring to make it a unique url:

    function updateImage()
    {
        if(newImage.complete) {
            document.getElementById("theText").src = newImage.src;
            newImage = new Image();
            number++;
            newImage.src = "http://localhost/image.jpg?" + new Date();
        }
    
        setTimeout(updateImage, 1000);
    }
    

提交回复
热议问题