0

我在 liferay 中使用带有自定义 portlet 的 jsp 页面,需要创建一个弹出窗口,我的视频将在其中播放(如预览)。我已经尝试过使用 JQPlayer 和 video.js,但它不适用于嵌入 url。

我不太了解 jQuery 和 CSS。我尝试了一些 Google 提供的演示代码,但没有成功。

我的页面vid_url中有一个变量。view.jsp一个iframe有链接的变量vid_url...

这是我要弹出的 jQuery,但我的 URI 在该 jQuery 中不起作用(我曾尝试打开另一个页面,甚至尝试使用嵌入 URL,但现在解决了)。

<script type="text/javascript">
function showPopup() {
      AUI().use('aui-dialog', 'aui-io', 'event', 'event-custom', function(A) {

        var dialog = new A.Dialog({
                title: 'Popup Title',
                centered: true,
                draggable: true,
                modal: true,
                width: 600,
                xy: ['center',10],


            }).plug(A.Plugin.IO, {uri: '/jsps/preview.jsp',}).render();

            dialog.show();

      });
};

那么我该如何实现呢?

4

1 回答 1

0

看到 youtube(Iframe) 这是最好的。 看到这个

于 2012-10-17T05:49:31.710 回答