Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HTML5 を使用してオーディオ ファイルを再生するたびに JavaScript 関数を実行したいと考えています。どうすればいいですか?
できれば動画も!
HTML5audio要素にはonplayイベントが含まれます。次のようにバインドできます。
audio
onplay
var myAudio = document.getElementById('audio_element'); myAudio.onplay = function(e) { // Your JavaScript function here... };
このvideo要素には、このイベントも含まれます。
video