play() 方法可以讓媒體文件嘗試播放(video/audio)并返回Promise
帶有播放和暫停按鈕的視頻:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML 音頻/視頻 play()方法使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <button onclick="playVid()" type="button">播放視頻</button> <button onclick="pauseVid()" type="button">暫停視頻</button> <br> <video id="video1"> <source src="movie.mp4" type="video/mp4"> <source src="movie.ogg" type="video/ogg"> 您的瀏覽器不支持 HTML5 video 標(biāo)簽。 </video> <script> var myVideo=document.getElementById("video1"); function playVid() { myVideo.play(); } function pauseVid() { myVideo.pause(); } </script> </body> </html>測(cè)試看看 ?/?
play() 方法開始播放當(dāng)前的音頻或視頻。
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 play() 方法。
注意:Internet Explorer 8 及之前的版本不支持該方法。
audio|video.play()