Sound plays every other time the Video plays in Chrome
问题 In chrome (7.0.517.44) I am using the <video> tag and the audio will only play every other time the video is played. Why is the audio not always playing along with the video? In page: <div id="VideoShow"> <video id="VideoPlay" width=800 height=600></video> </div> On click this JS is run. function playVideo(videoName) { $("#VideoShow").fadeIn(300); var Vid = document.getElementsByTagName('video')[0]; Vid.src = videoName; Vid.play(); Vid.addEventListener('ended', function(e) { closeVideo(); },