设置autoplay属性,布尔值。如果出现该属性,则视频在就绪后马上播放。
【示例】
-
HTML
<!DOCTYPE html> <html> <meta charset="utf-8" /> <video id="myvideo" src="../video/4_1.mov" autoplay> </video> <audio id="myaudio" src="../audio/4_2.mp3" autoplay> </audio> </html>