1

私は JavaScript の初心者です。HTML5でmp4ファイルを特定の時間から特定の時間再生したい。まず、サムネイル画像を読み込みます。クリックすると、特定の時間からビデオ ファイルを再生したいと思います。これは私のコードです。でも6からじゃない。最初から。私は何を間違えましたか?

<!DOCTYPE html>
<html>
<head>
 <script type="text/javascript">
     function PlayVideo(anchor,vid, start_time, end_time, video_file) {
         document.getElementById(anchor).outerHTML = 
                 "<video id='" + vid + "' controls width='320'> <source src='" + video_file + "'              
                 type='video/mp4'/></video>"

        var video = document.getElementById(vid);

        video.play();
        video.currentTime = start_time;

        video.addEventListener('timeupdate', function() {
            if(this.currentTime > end_time) {
                this.pause();
                this.currentTime = start_time;
            }
        });
        document.getElementById(aid).style.display = "none";
    }
    </script>
</head>
<body>
<a id="anchor" onclick="PlayVideo('anchor','003', 5, 9, 'test.mp4');"><img src ="test.jpg" alt="trail" /></a>

</body>
</html>
4

1 に答える 1

1

試す

document.getElementById(anchor).outerHTML = "<video id='" + vid + "' controls width='320'> <source src='" + video_file + "'
type='video/mp4'/></video>";

注意してください

;

于 2013-07-03T03:02:51.390 に答える