谷歌加载程序导致浏览器更改位置 FF 或 chrome 中的空白页面

发布于 2024-10-19 17:43:12 字数 279 浏览 5 评论 0原文

我在现有网页中使用谷歌加载程序时遇到问题。

当我调用例如

google.load("translate","1");

If FireFox 时,浏览器会更改其位置,试图从 google 加载某些内容,但它永远不会完成,而在 Chrome 中,页面只是变成空白。

以前有人经历过吗?

这些页面也执行了大量的 jquery、javascript 和 asp.net AJAX。但我找不到任何似乎导致它的原因。

谢谢!

I have an issue using the google loader in an existing webpages.

When I call e.g.

google.load("translate","1");

If FireFox, the browser changes it's location trying to load something from google which it never finishes and in Chrome the page just goes blank.

Has anyone experienced this before?

These pages are doing a lot of jquery, javascript and asp.net AJAX too. But I can't find anyting which seems to be causing it.

Thanks!

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

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

发布评论

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

评论(2

情徒 2024-10-26 17:43:12

我遇到了同样的问题,过了一段时间我找到了这个解决方案。

http://markmail.org/message/vn57b44u7eqbrn3c

如果您发布脚本,我可能可以提供更多帮助

I had the same issue, after a while I found this solution.

http://markmail.org/message/vn57b44u7eqbrn3c

If you post your script I can probably provide more help

客…行舟 2024-10-26 17:43:12

同样的问题,与 Allartk 建议的解决方案相同:将“回调”选项添加到 load() 调用中。
您可以在这里找到详细和更新的文档:
Google Loader API

示例:

function myCallback(){console.info("callback!");}    
google.load("translate","1","callback": myCallback);

Same issue, same solution as suggested by Allartk: adding the "callback" options to the load() call.
Here you can find detatailed and updated documentation:
Google Loader API

Example:

function myCallback(){console.info("callback!");}    
google.load("translate","1","callback": myCallback);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文