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


HTML <a> hreflang屬性用法及代碼示例


HTML hreflang屬性用於指定鏈接文檔的語言。僅在設置href屬性時使用。

用法:

<a hreflang="language_code">

屬性值:


  • language_code:它指定鏈接文檔的語言代碼。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML hreflang Attribute 
    </title> 
</head> 
  
<body> 
    <center> 
        <h1>  
        GeeksForGeeks  
    </h1> 
  
        <h2>  
        HTML <a> hreflang Attribute  
    </h2> 
  
        <p>Welcome to 
            <a href="http://www.example.com:4097/test.htm#part2" 
               id="GFG" 
               rel="nofollow" 
               hreflang="en-us" 
               target="_self">  
                GeeksforGeeks  
            </a> 
        </p> 
    </center> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <a> hreflang屬性支持的瀏覽器:

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


相關用法


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