如何正确使用SWFObject

时间:2012-06-07 10:28:56

标签: javascript events youtube youtube-api swfobject

我正在使用SWFObject将YouTube视频嵌入我们的网站。在一个页面中有许多视频链接,每个链接清除一个包装div,然后使用以下代码加载一个新的嵌入:

$('a.video-link').each(function () {
    $(this).on('click', function(e) {
        e.preventDefault();

        if ($('#video-wrap').has('object').length == 0) {
            var params = { allowScriptAccess: 'always', allowFullScreen: 'true' };
            var atts = { id: 'ytapiplayer' };
            swfobject.embedSWF($(this).attr('href'), 'ytapiplayer', '1000', '562', '8', null, null, params, atts);
            $('#video-wrap').show();
        } else {
            $('#video-wrap').find('object').remove();
            $(this).trigger('click');
        }
    });
});

这些是我为每个嵌入使用的Youtube链接:

http://www.youtube.com/v/{Youtube ID}?hl=en_US&rel=0&hd=1&border=0&version=3&fs=1&autoplay=1&autohide=1&enablejsapi=1&playerapiid=ytapiplayer

然后,这是onYouTubePlayerReady()事件处理程序:

function onYouTubePlayerReady(id) {
    console.log('youtube player is ready.');
    var ytplayer = document.getElementById('ytapiplayer');
    ytplayer.addEventListener('onStateChange', 'onYouTubePlayerStateChange');
    ytplayer.addEventListener('onError', 'onYouTubePlayerError');
}

所有视频加载都很好,但onYouTubePlayerReady永远不会被点击!

我尝试了herehere的解决方案,但没有任何效果:(

请帮我解决这个问题。 最终目标是让Youtube API正常运行。

感谢。

编辑:我尝试使用代码,确保所有名称都正确,分成不同的脚本标记和/或.js文件,在开头加载它,在document.ready()内,仍然,onYouTubePlayerReady不是射击。 您的想法是什么?

1 个答案:

答案 0 :(得分:3)

以下是工作代码:

在每个视频链接上执行SWFObject:

$('a.video-link').on('click', function(e) {
    e.preventDefault();
    // SWFObjects loads a video object into div with ID ytapiplayer.
    // If the wrapper div already contains a video we need to remove it first:
    if ($('#video-wrap').has('object').length == 0) {
        var params = { allowScriptAccess: 'always', allowFullScreen: 'true' };
        var atts = { id: 'ytapiplayer' };
        swfobject.embedSWF($(this).attr('href'), 'ytapiplayer', '1000', '562', '8', null, null, params, atts);

        $('#video-wrap').show();
    } else {
        $('#video-wrap').find('object').remove();
        $(this).trigger('click');
    }
});

包含API值的YouTube链接:

http://www.youtube.com/v/' + data.YoutubeLink + '?hl=en_US&rel=0&hd=1&border=0&version=3&fs=1&autoplay=1&autohide=1&enablejsapi=1&playerapiid=ytapiplayer

SWFObject事件处理程序我把这段代码放在一个单独的.js文件中,在执行SWFObject的代码之前加载。我不知道是否有必要,但它仍然有效:

function onYouTubePlayerReady(id) {
    // We need the actual DOM element for this, if we want to use more advanced API.
    // This is because addEventListener activates the API.
    var ytplayer = $('#ytapiplayer').get(0);
    ytplayer.addEventListener('onStateChange', 'onYouTubePlayerStateChange'); // onYouTubePlayerStateChange(newState)
    ytplayer.addEventListener('onError', 'onYouTubePlayerError'); // onYouTubePlayerError(errorCode)
}