音频标签 audio 常用属性

播放 document.getElementById("audio").play();
暂停 document.getElementById("audio").pause();
音量 document.getElementById("audio").volume
当前音频的时间 document.getElementById("audio").currentTime (以秒计)
当前音频的长度 document.getElementById("audio").duration (以秒计)
https://www.w3school.com.cn/jsref/dom_obj_audio.asp 属性文档
原文地址:https://www.cnblogs.com/fanqiuzhuji/p/12692500.html