我会尽量保持简短:
在 ajax 页面加载后,我将如何设法使 jPlayer (http://jplayer.org/) 的唯一实例“工作”?
我的 jPlayer 使用以下内联 javascript 代码:
<?
$mp3 = get_post_meta(get_the_ID(), 'audio_mp3', TRUE);
$ogg = get_post_meta(get_the_ID(), 'audio_ogg', TRUE);
?>
<?php if($mp3 && $ogg) { ?>
<script type="text/javascript">
jQuery(document).ready(function($) {
jQuery( '#jquery_jplayer_<?php the_ID(); ?>' ).jPlayer({
ready: function() {
jQuery(this).jPlayer('setMedia', {
mp3: "<?php echo ($mp3); ?>",
oga: "<?php echo ($ogg); ?>"
});
},
swfPath: "<?php echo get_template_directory_uri(); ?>/js/jplayer/",
cssSelectorAncestor: "#jp_container_<?php the_ID(); ?>",
supplied: "<?php if($mp3 != '') : ?>mp3, <?php endif; ?><?php if($ogg != '') : ?>oga, <?php endif; ?> all"
});
});
</script>
对于非独特的东西,例如漂亮的照片灯箱,我创建了一个函数 (prettyPhoto(); 我放入回调。但我似乎无法使用 jplayer!
任何帮助将不胜感激!