我正在尝试将预览图像添加到 Fancybox2 中提出的jwplayer 中,图像和视频在同一组中,使用 JWPlayer 6 处理本地各种类型的音频文件,我正在使用类似于建议的方法,但它不适用于我(建议的方法对我有用,谢谢)
<a class="fancybox" rel="group" title="Video 1" data-fancybox-type="anything" containertype="video" href="1.mp3" myphoto="1.jpg">
和
afterShow: function(){ if($(this.element).attr('containertype')=='video'){ jwplayer("video_container").setup({ flashplayer: "jwplayer.flash.swf", file: this.href, image: this, myphoto, autostart: 'true' }); // jwplayer setup }; }// afterShow }); // fancybox ...