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


HTML <q> cite屬性用法及代碼示例


HTML中的<q> cite屬性用於指定引用的源URL。

用法:

<q cite="URL">

屬性值:它包含用於指定引號URL的單值URL。 URL的可能值為:


  • Absolute URL:它用於指出其他網站(例如cite =“ http://www.w3schools.com”)
  • Relative URL:它用於指出網站內的頁麵。 (例如cite =” geeks.htm”)。

例:

<!DOCTYPE html> 
<html>  
    <head>  
        <title>HTML q cite Attribute</title>  
    </head>  
      
    <body style="text-align:center;">  
          
        <h1>GeeksForGeeks</h1> 
          
        <h2> 
            HTML <q>cite Attribute  
        </h2> 
          
        <p> 
            <q cite="https://www.geeksforgeeks.org"> 
                GeeksforGeeks 
            </q>  
            A computer science portal for geeks  
        </p>  
    </body>  
</html>                    

輸出:

支持的瀏覽器:<q> cite Attribute支持的瀏覽器如下:

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


相關用法


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