替换为

发布于 2024-08-08 20:49:28 字数 129 浏览 2 评论 0原文

我需要在另一个页面中打开一个页面,而内页中没有水平滚动条。

我不想在我的页面上使用 标记。 标签有替代品吗?

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 技术交流群。

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

发布评论

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

评论(4

a√萤火虫的光℡ 2024-08-15 20:49:28

如果这是关于滚动条(您在评论中提到的),您可以使用样式表隐藏/显示它们 - 尝试以下操作:

<body style="overflow-y:hidden; overflow-x:hidden">
...
</body>

您也可以在其他标签(文本区域等)上使用样式。

PS:如果您澄清了您的问题,最好编辑原始帖子而不是发表评论 - 这将使您更容易理解您的问题。

If this is about the scrollbars (you mentioned that in your comment), you can hide/show them using stylesheets - try the following:

<body style="overflow-y:hidden; overflow-x:hidden">
...
</body>

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.

北恋 2024-08-15 20:49:28

避免 IFRAME 的最佳方法是使用 AJAX。如果您使用 jQuery,那就这么简单:

$('#yourDIV').load('http://someurl.com/example.html');

其中 #yourDIV 是您想要的任何元素的 ID,例如 DIV。

Best way to avoid IFRAME is to use AJAX. If you would use jQuery it is as simple as that:

$('#yourDIV').load('http://someurl.com/example.html');

Where #yourDIV is ID of any element you want, DIV for example.

上课铃就是安魂曲 2024-08-15 20:49:28

也许 或类似的东西。我想你可以在那里放一个html。但我想那应该是一样的......

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...

ゃ人海孤独症 2024-08-15 20:49:28

如果您想针对 strict 进行验证,则应采用

<object data="example.html" type="text/html" width="500" height="300"></object>

请注意,MSIE 6 不支持 html 对象标签。

If you want to validate against strict, <object> should be the way to go.

<object data="example.html" type="text/html" width="500" height="300"></object>

Please note that MSIE 6 doesn't support html object tags.

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