如何从 jsp 创建 liferay iframe

发布于 2024-12-07 02:23:57 字数 252 浏览 1 评论 0原文

这是一个场景。我正在开发一个小项目,在这个项目中,我将根据一些条件检查形成一个 URL。当最终 URL 准备就绪(在 JSP 中)时,我必须调用 liferay iframe 并将此 URL 传递给它,以便加载 JSP。它应该使用我形成的 URL 加载新创建的 liferay iframe。如何在流程中做到这一点?有什么方法可以创建liferay iframe吗? (来自liferay taglib的东西)

谢谢

-Aj

Here is a scenario. I am working on a small project and in this, I will be forming a URL based on some condition checks. When the final URL is ready ( in JSP), I have to invoke the liferay iframe and pass this URL to it so that as the JSP is loaded. It should load the newly created liferay iframe with the URL which I have formed. How to do this in the flow ? Is there any means through which liferay iframe can be created ? (Something from liferay taglib)

Thanks

-Aj

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

⒈起吃苦の倖褔 2024-12-14 02:23:57

知道了。做了这样的事。

<script>
function show(which) {
var hide = new Array();
hide = document.getElementsByName(which);
for (i=0; i<hide.length; i++) {
hide[i].style.display = 'inline';
}
}
function hide(which) {
var hide = new Array();
hide = document.getElementsByName(which);
for (i=0; i<hide.length; i++) {
hide[i].style.display = 'none';
}
}
</script>
<style type="text/css">
iframe { display: none; }
</style>
<b>Google</b>
<input type="button" value="Show" onclick="show('iframe');">
<input type="button" value="Hide" onclick="hide('iframe');">
<iframe src='http://www.google.com' width='100%' height='100%' scrolling='yes'       name='iframe'></iframe>

现在我可以根据需要使用显示和隐藏。

这些按钮可用于根据需要最大化和最小化 iframe,并且一个页面中也可以使用 1 个以上的 iframe。

Got it. Did something like this.

<script>
function show(which) {
var hide = new Array();
hide = document.getElementsByName(which);
for (i=0; i<hide.length; i++) {
hide[i].style.display = 'inline';
}
}
function hide(which) {
var hide = new Array();
hide = document.getElementsByName(which);
for (i=0; i<hide.length; i++) {
hide[i].style.display = 'none';
}
}
</script>
<style type="text/css">
iframe { display: none; }
</style>
<b>Google</b>
<input type="button" value="Show" onclick="show('iframe');">
<input type="button" value="Hide" onclick="hide('iframe');">
<iframe src='http://www.google.com' width='100%' height='100%' scrolling='yes'       name='iframe'></iframe>

Now I can use the show and hide, as I need and use it.

These buttons can be used to maximize and minimize the iframe based on the need and more than 1 iframe can be used in a page too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文