// 页面只有一个可以播放 var videos = document.getElementsByTagName(‘video‘); for (var i = videos.length - 1; i >= 0; i--) { (function(){ var p = i; videos[p].addEventListener(‘play‘,function(){ pauseAll(p); }) })() } function pauseAll(index){ for (var j = videos.length - 1; j >= 0; j--) { if (j!=index) videos[j].pause(); } }
原文地址:https://www.cnblogs.com/Alitar/p/10789031.html
时间: 2024-10-24 04:55:05