YouTube currentTime with jQuery



如何获取YouTube视频的currentTime?

我一直在YouTube api中搜索,但我就是不明白:https://developers.google.com/youtube/js_api_reference?csw=1

我一直在Stack中搜索,并试图应用他们所说的内容,但它不起作用。毫无疑问,我错过了一些我不理解的东西:
Youtube API返回当前时间
获取当前YouTube视频时间

如果有任何指导我知道从哪里开始,我将不胜感激

您可以检查自己:http://jsfiddle.net/twL9z8e1/

$("#bookmarkBoto").click(function() {
		
    //var time = $("#yt").currentTime();//no
	//var time = $("#yt").getCurrentTime();//no		
    $('#check').text(time);
			
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<iframe id="yt" name="yt" width="720" height="405" src="https://www.youtube.com/embed/M7lc1UVf-VE" frameborder="0" allowfullscreen></iframe>
<br><br>
<div id="bookmarkBoto">bookmarkBoto</div>
<div id="check">check</div>

没有示例方式,您需要使用YouTube API。这是javascript代码。最后我做了一个活生生的例子。

JAVASCRIPT

var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// 3. This function creates an <iframe> (and YouTube player)
//    after the API code downloads.
var player;
function onYouTubeIframeAPIReady() {
    player = new YT.Player('player', {
        events: {
            'onReady': onPlayerReady
        }
    });
}
function onPlayerReady(event) {
    event.target.playVideo();
}
$('button').click(function() {
  console.log(player.getCurrentTime())
})

HTML

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <iframe id="player" width="640" height="360" src="https://www.youtube.com/embed/zua0_IXcPFY?enablejsapi=1" frameborder="0" allowfullscreen></iframe>
  <button>click time</button>
</body>
</html>

现场演示

相关内容

  • 没有找到相关文章