我正在使用 Youtube Iframe API 并使用他们的脚本播放器加载正常。但是当我对包含 javascript 代码的 php 文件进行 ajax 调用以运行播放器时,它不会执行。
function get_content(song_id,url,song_title) {
if (song_id == null)
return;
document.title = song_title + browser_title_suffix;
$.get('/ajax/player.php',{song_id:song_id}, function(data) {
$('#main_content').html(data).css({'opacity':0}).animate({'opacity':1});
});
}
/ajax/player.php 包含此代码 - https://developers.google.com/youtube/iframe_api_reference#Loading_a_Video_Player
但是,玩家不会再这样做了。我什至尝试过 player.remove() 但这也无济于事。
更新 1: 我的 PHP 文件:
var tag = document.createElement('script');
tag.src = "//www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
$(document).ready(function(){
get_content('.$row[song_id].',null,"'.$row[title].'");
});
</script>
我的 javascript 文件:
function get_content(song_id,url,song_title) {
if (song_id != null) {
$.get('/ajax/player.php',{song_id:song_id}, function(data) {
video_id = data;
player = new YT.Player('player', {
height: '390',
width: '640',
videoId: video_id,
events: {
'onReady': onPlayerReady,
'onStateChange': onPlayerStateChange
}
});
});
}
}
但是,视频播放器不会加载。