HTML onerror 事件屬性
HTML onerror 事件屬性在 HTML 文件中載入外部檔案時發生錯誤時觸發。
語法
以下是語法 −
<tagname onerror=”script”>Content</tagname>
讓我們來看一個 HTML onerror 事件屬性的示例 −
示例
<!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 事件屬性的影像元素,然後將其新增到正文元素中。

廣告
資料結構
網路
關係資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 語言程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP