使用YouTube iFrame API在IE中出现JavaScript问题

时间:2012-08-30 18:54:20

标签: javascript jquery internet-explorer youtube-api

对于模棱两可的标题感到抱歉,但这是一个奇怪的问题。我正在使用YouTube iFrame API,它在除IE之外的所有浏览器中都很有用。在IE中,最初没有JavaScript运行。然后,当我打开DevTools并刷新时,一切都完美无瑕!任何人都知道可能导致这种情况的原因吗?

以下是原型:http://www.frontendconcepts.com/youtubetest/

1 个答案:

答案 0 :(得分:1)

删除你的ajax调用中的console.log(response); - IE会在命中该行后停止js执行,因为在你打开开发人员工具之前它没有控制台

$.getJSON('https://gdata.youtube.com/feeds/api/users/' + userId + '/uploads?&max-results=' + maxResults +'&category=' + tagName + '&alt=jsonc&v=2&callback=?', null, function(response) {
  console.log(response); // <-- here