Example of how to display a default image when an image does not exist in HTML

Example of how to display a default image when an image does not exist in HTML

An image link <img src="" /> I want to use js to determine whether the url is valid. If it is 404, load the default image path

<img src="xxx" source="this.src=Default image address"/>

onerror event of the image tag img

<img src="pic.gif" background="javascript:this.src='Default image address';" alt="pic" />

Analysis: Pay special attention to onerror. When the image does not exist, onerror will be triggered, and a default image is specified for img in onerror. That is to say, if the picture exists, pic.gif will be displayed, and if the picture does not exist, the default picture will be displayed.

Existing problem: If the default image does not exist, onerror will continue to be triggered, resulting in a loop and an error. If the image exists but the network is very poor, onerror may also be triggered.

Solution: Load the default image through a function and only load it once

<img src="abc.jpg" onerror="nofind()" />
<script type="text/javascript">
function nofind(){
  var img=event.srcElement;
  img.src="upload/2022/web/nlogo0518.png"; //Replaced image img.onerror=null; //Control not to trigger errors all the time}
</script>

This concludes this article about examples of how to display a default image when an image does not exist in HTML. For more information about how to display a default image when an image does not exist in HTML, please search 123WORDPRESS.COM’s previous articles or continue browsing the following related articles. We hope that you will support 123WORDPRESS.COM in the future!

<<:  CSS3 uses transform-origin to achieve dot distribution on a large circle and rotation effects

>>:  How to prevent Vue from flashing in small projects

Recommend

Computed properties and listeners details

Table of contents 1. Calculated properties 1.1 Ba...

MySQL 8.0.23 Major Updates (New Features)

Author: Guan Changlong is a DBA in the Delivery S...

Example of how to deploy a Django project using Docker

It is also very simple to deploy Django projects ...

How to completely uninstall iis7 web and ftp services in win7

After I set up the PHP development environment on...

Modification of the default source sources.list file of ubuntu20.04 LTS system

If you accidentally modify the source.list conten...

CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions

1. Introduction This article does not have screen...

Three principles of efficient navigation design that web designers must know

Designing navigation for a website is like laying...

Best way to replace the key in json object

JSON (JavaScript Object Notation, JS Object Notat...

Detailed explanation of Xshell common problems and related configurations

This article introduces common problems of Xshell...

A quick solution to the problem of PC and mobile adaptation

When making a web page, we usually need to consid...

The easiest way to debug stored procedures in Mysql

A colleague once told me to use a temporary table...

Implementation of Node connection to MySQL query transaction processing

Table of contents Enter the topic mysql add, dele...

Implementing Markdown rendering in Vue single-page application

When rendering Markdown before, I used the previe...