2

但它在 chrome 和 firefox 中运行良好。这是我的代码:

<script>
        $f("player", "http://www.practice.com/ci/resource/flowplayer-3.2.9.swf", {
          plugins: {
            controls : {
                fullscreen : true,
            }
          },
          clip: {
            baseUrl: "http://www.practice.com/ci/resource",
            url: "info.flv",
            //urlResolvers: "secure",
            //scaling: "fit",
            onStart: function (clip) {
              document.getElementById("info").innerHTML = clip.baseUrl + "/" + clip.url;
            }
          }
        });
    </script>

有什么不对?

4

2 回答 2

0

出现语法错误(逗号错误):

fullscreen : true
于 2012-05-07T13:29:32.357 回答
0

定义fullscreen : true在里面clip而不是在controls里面plugin看看。

于 2012-06-04T19:25:22.320 回答