HTML onerror 이벤트 속성은 HTML 문서에서 외부 파일을 로드하는 동안 오류가 발생하면 트리거됩니다.
구문
다음은 구문입니다 -
<tagname onerror=”script”>Content</tagname>
HTML onerror 이벤트 Attribute −
의 예를 살펴보겠습니다.예시
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: #000;
height: 100vh;
background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat;
text-align: center;
padding: 20px;
}
.btn {
background: #db133a;
border: none;
height: 2rem;
border-radius: 2px;
width: 40%;
display: block;
color: #fff;
outline: none;
cursor: pointer;
margin: 1rem auto;
}
</style>
</head>
<body>
<h1>HTML onerror Event Attribute Demo</h1>
<button onclick="add()" class="btn">Add Nature Image</button>
<script>
function add() {
var imgEle = document.createElement('IMG');
imgEle.setAttribute("src", "nature.png");
imgEle.setAttribute("alt", "nature image");
imgEle.setAttribute("onerror", "errorFn()");
document.body.appendChild(imgEle);
}
function errorFn() {
document.body.style.background = "linear-gradient(45deg, #8BC6EC 0%, #9599E2 100%) no-repeat";
document.body.style.color = "#fff";
}
</script>
</body>
</html> 출력

"자연 이미지 추가를 클릭합니다. ” 버튼을 눌러 잘못된 소스 속성과 onerror 이벤트 속성을 사용하여 이미지 요소를 생성한 다음 본문 요소에 추가합니다.
