简单教程
提交运行
代码编辑器:
<audio controls> <source id="mySource" src="/static/i/html/horse.mp3" type="audio/mpeg"> <source src="/static/i/html/horse.ogg" type="audio/ogg"> 您的浏览器不支持 audio 元素。 </audio> <p>点击按钮返回媒体资源的 type 属性的值</p> <p id="demo"></p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction(){ var x = document.getElementById("mySource").type; document.getElementById("demo").innerHTML = x; }; </script>
运行结果: