當元素遇到錯誤(該元素未正確加載)時,將使用jQuery中的error()方法。 error()方法附加了一個函數,該函數在發生錯誤事件或觸發錯誤事件時運行。
用法:
- 錯誤事件中的函數添加:
$(selector).error(function)
- 觸發某些選定元素的錯誤事件:
$(selector).error()
參數:
- function: 此參數是可選的,它指定發生錯誤事件時要運行的函數。
示例1:
<!DOCTYPE html>
<html>
<head>
<title>error() method</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script>
$(document).ready(function() {
$("img").error(function() {
$("img").replaceWith(
"<h3>Error occurs</h3>");
});
});
</script>
</head>
<body>
<center>
<h1>Welcome to GeeksforGeeks!.</h1>
<div style="background-color:yellow;">
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190220214542/a13.png">
</div>
<div style="background-color:green">
<h3> The image will be replaced with specified
text if the image above encounters an error.</h3>
</div>
</center>
</body>
</html>
輸出:
示例2:
<!DOCTYPE html>
<html>
<head>
<title>error() method</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
<script>
$(document).ready(function() {
$("img").error(function() {
$("img").replaceWith(
"<h3>Error </h3>");
});
});
</script>
</head>
<body>
<center>
<div style="background-color:green">
<h1>Welcome to GeeksforGeeks!.
</h1>
</div>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190220220257/a22.png"
width="284"
height="113">
<h3>Image is replaced with a specified
text, if error occur in loading.</h3>
</center>
</body>
</html>
輸出:
注意:此方法已在jQuery 3.0版中刪除。
相關用法
- HTML DOM console.error()用法及代碼示例
- JQuery die()用法及代碼示例
- JQuery off()用法及代碼示例
- JQuery add()用法及代碼示例
- JQuery is()用法及代碼示例
- JQuery get()用法及代碼示例
- JQuery css()用法及代碼示例
- JQuery before()用法及代碼示例
- JQuery not()用法及代碼示例
- JQuery slideDown()用法及代碼示例
- JQuery unbind()用法及代碼示例
- JQuery append()用法及代碼示例
- JQuery slideToggle()用法及代碼示例
注:本文由純淨天空篩選整理自AdeshSingh1大神的英文原創作品 jQuery | error() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。