隐藏谷歌翻译的顶部框架

发布于 2024-09-08 20:26:26 字数 86 浏览 2 评论 0原文

如何隐藏google顶部框架? JS? jQuery?以及如何...

谢谢!

<frameset rows="36, 95%" border="0">
<frame src="alfa.html" noresize scrolling="no">
<frame src="http://translate.google.com/translate?js=y&prev=_t&hl=en&ie=UTF-8&layout=1&eotf=0&u=http://www.apple.com/&sl=en&tl=zh-CN">
</frameset>

How to hide the google top frame? JS? Jquery? And how...

Thanks!

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

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

发布评论

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

评论(2

握住你手 2024-09-15 20:26:26

使用带有position:absolute和负margin-top的iframe来隐藏google顶部框架。请小心 z-index 属性。

Use iframes with position:absolute and negative margin-top to hide the google top frame. Be carefull with the z-index property.

記柔刀 2024-09-15 20:26:26

你知道吗,这个 Cookie Monitor 想法对一些奇怪的事情有所帮助。我尝试使用 Google 翻译 (http://translate.google.com/translate_tools?hl= en)在移动网络应用程序上,每次更改语言时,它都会在顶部插入一个栏作为 document.body 的第一个子元素。我现在正在跟踪“googtrans”cookie 并执行以下操作:

listenCookieChange('googtrans', function() {
    $(document.body).css('top','0px');
});

Know what, this Cookie Monitor idea helped for something weird. I was trying to use Google Translate (http://translate.google.com/translate_tools?hl=en) on a mobile webapp and everytime the language is changed, it kept inserting a bar at the top as the first child of document.body . I am now tracking the 'googtrans' cookie and doing this :

listenCookieChange('googtrans', function() {
    $(document.body).css('top','0px');
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文