我的网页上有以下 javascript:
jwplayer(elementId).setup({
'modes': [
{ type: 'html5' },
{ type: 'flash', src: '/jwplayer/player.swf' }
],
file: videoUrl,
width: width + "px",
height: height + "px"
});
在 Google Chrome(版本 20.0.1132.57 m)中运行页面时,我收到错误消息:
没有找到合适的球员
我已经调试了我的代码,并且所有变量都传递了正确的值。我也在其他应用程序上使用过相同的脚本,它们运行良好。
为什么我会收到此错误?