html src屬性用於指定外部資源的位置(URL)。
支持的標簽:
- HTML - <audio> src屬性用法及代碼示例
- HTML - <embed> src屬性用法及代碼示例
- HTML - <iframe> src屬性用法及代碼示例
- HTML - <img> src屬性用法及代碼示例
- HTML - <input> src屬性用法及代碼示例
- HTML - <script> src屬性用法及代碼示例
- HTML - <source> src屬性用法及代碼示例
- HTML - <track> src屬性用法及代碼示例
- HTML - <video> src屬性用法及代碼示例
例: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
相關用法
- HTML <img> src屬性用法及代碼示例
- HTML <input> src屬性用法及代碼示例
- HTML <video> src屬性用法及代碼示例
- HTML <track> src屬性用法及代碼示例
- HTML <script> src屬性用法及代碼示例
- HTML <iframe> src屬性用法及代碼示例
- HTML <audio> src屬性用法及代碼示例
- HTML <source> src屬性用法及代碼示例
- HTML <embed> src屬性用法及代碼示例
- HTML Source src用法及代碼示例
- HTML Track src用法及代碼示例
- HTML Video src用法及代碼示例
- HTML Script src用法及代碼示例
- HTML IFrame src用法及代碼示例
- HTML Input Image src用法及代碼示例
- HTML Embed src用法及代碼示例
- HTML Audio src用法及代碼示例
- AngularJS ng-src用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML src attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。