运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Events</h1> <h2>The onvolumechange Event</h2> <p>Assign an "onvolumechange" event to an audio element.</p> <audio controls onvolumechange="myFunction()"> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio> <p>Try to change the volume.</p> <p id="demo"></p> <script> function myFunction() { document.getElementById("demo").innerHTML += "The volume has been changed! "; } </script> </body> </html>