本文介绍了将iframe添加到JSF组件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有可能将iframe从支持bean添加到JSF组件(RichFaces,PrimeFaces)?
Is it possible to add an iframe to a JSF component(RichFaces, PrimeFaces) from backing bean?
我需要将外部网页嵌入到我的主页中.用户需要设置该URL.我不能使用jQuery.
I need to embed externel webpages in my homepage. And user needs to set this url. I cannot use jQuery.
我找不到任何与iframe等效的JSF组件.有什么特殊原因吗?
I am not able to find any iframe equivalent JSF component. Is there any particular reason for this?
推荐答案
只需使用纯HTML.
<iframe src="#{bean.iframeUrl}"></iframe>
不存在组件的最可能原因是因为将其包装在JSF组件中时没有额外的优势.例如<p>
,<br>
,<hr>
等也没有等效的JSF.
The most probable reason why a component doesn't exist is because there would be no extra advantages to offer when wrapping it in a JSF component. For example <p>
, <br>
, <hr>
, etc have also no JSF equivalent.
这篇关于将iframe添加到JSF组件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!