我的 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 函数,该函数不起作用。我究竟做错了什么?任何帮助谢谢。