在此页http://support.jwplayer.com/customer/portal/articles/1413089-javascript-api-reference上,它说resize()可以将百分比数作为参数,但是当我尝试
时jwplayer().resize(50%,50%)
语法错误SyntaxError: Unexpected token ,
此外,当尝试在控制台中运行以下代码时,它只是打印funciont体而不是执行它
var s = 500;
jwplayer().resize(s,888);
但是,如果我将它包含在js文件中,它可以毫无问题地执行。那么如何调整大小以及它为什么不能在控制台中执行(这使得测试和调试变得困难)呢?
答案 0 :(得分:2)
尝试:
jwplayer().resize('50%','50%');