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


HTML src屬性用法及代碼示例


html src屬性用於指定外部資源的位置(URL)。

支持的標簽:

例:HTML音頻src屬性

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML audio src Attribute  
    </title>  
</head>  
  
<body style="text-align:center;">  
      
    <h1>GeeksforGeeks</h1>  
      
    <h2>  
        HTML audio src Attribute  
    </h2>  
      
    <audio controls muted>  
        <source src="GFG.mp3" type="audio/mp3">  
        <source src="GFG.ogg" type="audio/ogg">  
    </audio>  
</body>  
  
</html>                     

輸出:

例:HTML img src屬性



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

輸出:

支持的瀏覽器:下麵列出了HTML src屬性支持的瀏覽器:

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




相關用法


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