gpt4 book ai didi

javascript - Youtube iFrame Api 示例 - 错误 : "JSON is undefined"?

转载 作者:行者123 更新时间:2023-11-29 15:51:14 26 4
gpt4 key购买 nike

我正在尝试新的 iFrame Api examlpe @ http://code.google.com/apis/youtube/iframe_api_reference.html (代码在此处..)

在 Chrome、safari 上一切正常,但在 firefox 3.0 和 IE6 上报告错误-> JSON 在第 13 行未定义播放器仍在工作,但 javascript 完全崩溃。

我试图在页面顶部获取 json2.js 库 (http://www.json.org/) 脚本,但效果不佳。如何在这些旧浏览器上安排此 JSON 错误?

<html>
<body>
<!-- 1. The <div> tag will contain the <iframe> (and video player) -->
<div id="player"></div>
<script src="js/json2.js"></script>
<script language="javascript">
// 2. This code loads the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "http://www.youtube.com/player_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 onYouTubePlayerAPIReady() {
player = new YT.Player('player', {
height: '390',
width: '640',
videoId: 'u1zgFlCw8Aw',
playerVars: { 'autoplay': 1, 'controls': 0, 'showinfo': 0, 'loop': 1, 'rel' : 0, 'showsearch' : 0, 'enablejsapi' : 1},
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
}

// 4. The API will call this function when the video player is ready.
function onPlayerReady(event) {
event.target.playVideo();
}


function onPlayerStateChange(event) {
//
}

</script>
</body>
</html>

最佳答案

我也被这个坑了。 Youtube iframe API 需要 HTML5 的 postMessage 特性,而 IE7 和其他旧浏览器没有。

Source

关于javascript - Youtube iFrame Api 示例 - 错误 : "JSON is undefined"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5297200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com