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


HTML alt屬性用法及代碼示例


HTML alt屬性用於提供備用標簽,如果主要屬性(即<img>標簽)無法顯示分配給它的值,則該標簽用於顯示或顯示內容。

支持的標簽:

例:圖alt屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML img alt Attribute  
    </title>  
</head>  
  
<body>  
    <h1>GeeksforGeeks</h1>  
  
    <h2>HTML img alt Attribute</h2>  
  
    <img src=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190506164011/logo3.png"
        alt="GeeksforGeeks logo">  
  
</body>  
  
</html> 

輸出:
前:

後:

例:區域alt屬性。



<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML area alt Attribute  
    </title>  
</head>  
  
<body style="text-align:center;">  
    <img src=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165729/area11.png"
        alt="alt_attribute" width="300" height="119" class="aligncenter"
        usemap="#shapemap" />  
  
    <map name="shapemap">  
          
        <!-- area tag contained image. -->
        <area shape="poly" coords="59, 31, 28, 83, 91, 83" href=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165802/area2.png"
        alt="Triangle">  
          
        <area shape="circle" coords="155, 56, 26" href=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227165934/area3.png"
        alt="Circle">  
          
        <area shape="rect" coords="224, 30, 276, 82" href=  
"https://media.geeksforgeeks.org/wp-content/uploads/20190227170021/area4.png"
        alt="Square">  
    </map>  
</body>  
  
</html>

輸出:

例:輸入alt屬性。

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML Input alt Attribute  
    </title>  
</head>  
  
<body style="text-align:center;">  
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1>  
  
    <h2>HTML Input alt Attribute</h2>  
    <input id="myImage"
        type="image"
        src=  
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png"
        alt="Submit"
        width="48"
        height="48">  
</body>  
  
</html>

輸出:

支持的瀏覽器:HTML | Java支持的瀏覽器。 alt屬性如下所示:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • 蘋果Safari
  • Opera




相關用法


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