ความหมายและการใช้งาน
src แอตทริบิวต์ระบุตำแหน่ง (URL) ของทรัพยากรภายนอก
นำไปใช้กับ
src แอตทริบิวต์ที่สามารถใช้กับองค์ประกอบต่อไปนี้:
องค์ประกอบ | คุณลักษณะ |
---|---|
<audio> | src |
<embed> | src |
<iframe> | src |
<img> | src |
<input> | src |
<script> | src |
<source> | src |
<track> | src |
<video> | src |
ตัวอย่าง
Audio ตัวอย่าง
เครื่องเล่นเสียง:
<audio src="horse.ogg" controls>
Your browser does not support the audio element.
</audio>
ลองตัวเอง» Img ตัวอย่าง
ภาพจะถูกทำเครื่องหมายขึ้นดังต่อไปนี้:
<img src="smiley.gif" alt="Smiley face">
ลองตัวเอง» Input ตัวอย่าง
รูปแบบ HTML ที่มีภาพที่แสดงถึงปุ่มส่ง:
<form action="demo_form.asp">
First name: <input type="text" name="fname"><br>
<input type="image" src="submit.gif" alt="Submit">
</form>
ลองตัวเอง» Source ตัวอย่าง
เครื่องเล่นเสียงที่มีสองไฟล์ที่มา เบราว์เซอร์ซึ่งควรเลือกไฟล์ (ถ้ามี) ก็มีการสนับสนุน:
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
ลองตัวเอง» Track ตัวอย่าง
วิดีโอที่มีสองคำบรรยายเพลง:
<video width="320" height="240" controls>
<source src="forrest_gump.mp4" type="video/mp4">
<source src="forrest_gump.ogg" type="video/ogg">
<track src="subtitles_en.vtt" kind="subtitles" srclang="en" label="English">
<track src="subtitles_no.vtt" kind="subtitles" srclang="no" label="Norwegian">
</video>
Video ตัวอย่าง
การเล่นวิดีโอ:
<video src="movie.ogg" controls>
Your browser does not support the video tag.
</video>
ลองตัวเอง» สนับสนุนเบราว์เซอร์
src
แอตทริบิวต์มีการสนับสนุนเบราว์เซอร์ต่อไปนี้สำหรับแต่ละองค์ประกอบ:
ธาตุ | |||||
---|---|---|---|---|---|
audio | 4.0 | 9.0 | 3.5 | 4.0 | 10.5 |
embed | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
iframe | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
img | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
input | 1.0 | 2.0 | 1.0 | 1.0 | 1.0 |
script | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
source | 4.0 | 9.0 | 3.5 | 4.0 | 10.5 |
track | 18.0 | 10.0 | 31.0 | 6.0 | 15.0 |
video | 4.0 | 9.0 | 3.5 | 4.0 | 10.5 |