Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML onerror แอตทริบิวต์เหตุการณ์


แอตทริบิวต์เหตุการณ์ HTML onerror ถูกทริกเกอร์เมื่อมีข้อผิดพลาดเกิดขึ้นขณะโหลดไฟล์ภายนอกในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

<tagname onerror=”script”>Content</tagname>

ให้เราดูตัวอย่างของแอตทริบิวต์เหตุการณ์ onerror HTML -

ตัวอย่าง

<!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>

ผลลัพธ์

HTML onerror แอตทริบิวต์เหตุการณ์

คลิกที่ “เพิ่มภาพธรรมชาติ ” เพื่อสร้างองค์ประกอบรูปภาพที่มีแอตทริบิวต์ต้นทางที่ไม่ถูกต้องและแอตทริบิวต์เหตุการณ์ onerror จากนั้นไปที่องค์ประกอบเนื้อหา

HTML onerror แอตทริบิวต์เหตุการณ์