<div id="mediaplayer" data-file="video/video.mp4"></div>
jwplayer('mediaplayer').setup({
'flashplayer': 'jwplayer/jwplayer.flash.swf',
'image': 'jq22.png',
'id': 'playerID',
'width': '100%',
'aspectratio': '10:6',
'file': vfiles,
'autostart': true
});这个下面的怎么写啊
jwplayer("container").setup({ //通过js调用播放器并安装到指定容器(container)内
flashplayer: "jwplayer/player.swf", //调用播放器
file: "video.flv", //调用视频文件
width: 328, //播放器宽
height: 200, //播放器高
aspectratio: "10:6", //自适应宽高比例,如果设置宽高比,可设置宽度100%,高度不用设置
image: "jwplayer/preview.jpg", //视频预览图片
controlbar: "over", //控制条位置
screencolor: "#fff", //播放器颜色
repeat: "always", //重复播放
autostart: true //自动播放
});为什么加了后,视频没出来?
jwplayer("container").setup({//通过js调用播放器并安装到指定容器(container)内
flashplayer: "jwplayer/player.swf",//调用播放器
file: "video.flv",//调用视频文件
width: 328,//播放器宽
height: 200,//播放器高
aspectratio:"10:6",//自适应宽高比例,如果设置宽高比,可设置宽度100%,高度不用设置
image:"jwplayer/preview.jpg",//视频预览图片
controlbar: "over",//控制条位置
screencolor :"#fff",//播放器颜色
repeat:"always",//重复播放
autostart:true//自动播放
});这段代码在哪?求指教
我的为什么没法兼容ie,在ie下运行黑屏