fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <h3>访问 SOURCE 元素</h3> <audio controls> <source id="mySource" src="horse.mp3" type="audio/mpeg"> <source src="horse.ogg" type="audio/ogg"> 您的浏览器不支持 audio 元素。 </audio> <p>点击按钮获取媒体文件的 URL。</p> <p id="demo"></p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction(){ var x = document.getElementById("mySource").src; document.getElementById("demo").innerHTML = x; }; </script> </body> </html>
运行结果