替换为
我需要在另一个页面中打开一个页面,而内页中没有水平滚动条。
我不想在我的页面上使用 标记。
标签有替代品吗?
I need to open a page inside another page without the horizontal scroll bar in the inner page.
I don't want to use <iframe>
tags on my page. Is there any substitute to the <iframe>
tag??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果这是关于滚动条(您在评论中提到的),您可以使用样式表隐藏/显示它们 - 尝试以下操作:
您也可以在其他标签(文本区域等)上使用样式。
PS:如果您澄清了您的问题,最好编辑原始帖子而不是发表评论 - 这将使您更容易理解您的问题。
If this is about the scrollbars (you mentioned that in your comment), you can hide/show them using stylesheets - try the following:
You can use the styles on other tags (textareas etc.) as well.
PS: If you clarify your question, it's a good idea to edit the original post instead of commenting - this will make it easier to understand your question.
避免 IFRAME 的最佳方法是使用 AJAX。如果您使用 jQuery,那就这么简单:
其中 #yourDIV 是您想要的任何元素的 ID,例如 DIV。
Best way to avoid IFRAME is to use AJAX. If you would use jQuery it is as simple as that:
Where #yourDIV is ID of any element you want, DIV for example.
也许
Maybe
<object>
or<embed>
or something like that. I think you can put an html there. But that would be sort of the same, i guess...如果您想针对
strict
进行验证,则应采用请注意,MSIE 6 不支持 html 对象标签。
If you want to validate against
strict
,<object>
should be the way to go.Please note that MSIE 6 doesn't support html object tags.