在jsf页面中的iframe中是否有类似scrolling-x =“no”和scrolling-y =“yes”的方法?

问题描述 投票:0回答:1

我在一个jsf项目中,所有的xhtml页面都显示在<iframe>中(参见下面的代码示例)。所以我需要隐藏这个iframe里面HTML对象的滚动。 #myIframe html: scroll-x:hidden;。我尝试了许多没有效果的试验。这是我的代码。

<iframe id="content" name="content"  
   style="width: 100%; height: 100%" src="content.xhtml" scrolling="no">
   <p>Your browser does not support iframes.</p>
</iframe>

scrolling="no"的解决方案,但它也防止overflow-y。我只想隐藏overflow-x

所以我的问题是如何在iframe中找到<html> DOM对象?如何在这个html元素中隐藏overflow-x

javascript jquery html iframe
1个回答
0
投票

请尝试以下方法:

<iframe id="content" name="content" style="width: 100%; height: 100%; overflow-x: hidden; overflow-y: scroll;" src="content.xhtml">
   <p>Your browser does not support iframes.</p>
</iframe>
© www.soinside.com 2019 - 2024. All rights reserved.