當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Image alt屬性用法及代碼示例


HTML DOM Image alt 屬性用於設置或返回圖像元素的 alt 屬性的值。 alt 屬性用於指定圖像的替代文本。在不顯示圖像時很有用。它用於為圖像提供替代信息。

用法:

它返回圖像 alt 屬性

ImageObject.alt

它設置 Image alt 屬性。



ImageObject.alt = text

屬性值:它包含一個值,用於指定圖像的替代文本。

返回值:它返回一個字符串值,表示圖像的替代文本。

範例1:此示例返回圖像 alt 屬性。

HTML


<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
  
        <h2>HTML DOM Image alt Property</h2>
  
        <img id="GFG" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"
            alt="GeeksforGeeks logo" />
        <br />
  
        <button onclick="Geeks()">Click me!</button>
          
        <p id="sudo"></p>
    </center>
  
    <script>
        function Geeks() {
            var g = document.getElementById("GFG").alt;
            document.getElementById("sudo").innerHTML = g;
        }
    </script>
</body>
  
</html>

輸出:

image alt

範例2:此示例設置 Image alt 屬性。

HTML


<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1 style="color:green;">
            GeeksforGeeks
        </h1>
  
        <h2>HTML DOM Image alt Property</h2>
  
        <img id="GFG" src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"
            alt="GeeksforGeeks logo" />
        <br />
  
        <button onclick="Geeks()">
            Click me!
        </button>
          
        <p id="sudo"></p>
    </center>
  
    <script>
        function Geeks() {
            var g = (document.getElementById("GFG").alt
                = "Hello GeeksForGeeks");
  
            document.getElementById("sudo").innerHTML = g;
        }
    </script>
</body>
  
</html>

輸出:




相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML DOM Image alt Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。