我在 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();
});
};
那么我该如何实现呢?