0

我的 jQuery 函数是加载 HTML,但该 HTML 不会从不同的函数(来自 flowplayer)加载不同的 jQuery 选择器

flowplayer("player", {src: "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", cachebusting: true, wmode: "transparent"});
   $('#options li a').click( function (evt){
    evt.preventDefault();
    $('#options li').removeClass('current');
         $(this).parent('li').addClass('current');
    var rackVideo = $(this).attr('href'); //JQUERY PULLS INFO FROM LINK
    var rackOutput =
        '<a href="http://c3426439.r39.cf0.rackcdn.com/pritchett/'+     rackVideo +'" id="player" style="display:block;width:348x;height:216px; display:block;">'+
        '<img src="http://www.p2ortho.com/wp-content/uploads/2010/10/intro-thumb.jpg" alt="Introduction Video" title="Introduction Video" width="348" height="216" class="alignnone size-full wp-image-620" />'+
        '</a>';
    $('#slidedata').html(rackOutput);
});

作为输出的 html 中的 id="player" 假设调用 flowplayer 函数,该函数不起作用。我究竟做错了什么?任何帮助谢谢。

4

2 回答 2

2

以下行...

flowplayer("player", {src: "http://releases.flowplayer.org/swf/flowplayer-3.2.7.swf", cachebusting: true, wmode: "transparent"});

...必须出现在此行之后:

$('#slidedata').html(rackOutput);

为什么?因为它是当id="player"元素存在于文档中的时候。

于 2012-06-06T19:54:22.317 回答
0

您能否提供指向此页面的链接或设置JS Fiddle。如果没有看到运行 javascript 的完整 html,很难确切知道发生了什么问题。我没有看到任何明显错误的地方,但是如果没有看到完整的页面,我将无能为力。

于 2012-06-06T19:53:56.907 回答