Check if image exists on server using JavaScript?

前端 未结 12 736
抹茶落季
抹茶落季 2020-11-22 06:24

Using javascript is there a way to tell if a resource is available on the server? For instance I have images 1.jpg - 5.jpg loaded into the html page. I\'d like to call a Jav

12条回答
  •  既然无缘
    2020-11-22 07:27

    You can refer this link for check if a image file exists with JavaScript.

    checkImageExist.js:

        var image = new Image();
        var url_image = './ImageFolder/' + variable + '.jpg';
        image.src = url_image;
        if (image.width == 0) {
           return ``;
        } else {
           return `

提交回复
热议问题