我如何在我的网站中使用谷歌翻译 API

发布于 2024-08-22 23:05:46 字数 650 浏览 6 评论 0原文

好吧,我想在我的网站中使用 Google api 翻译器,当我将此 api 代码放入我的 html 页面中时,它工作正常。

----------------------------------谷歌翻译代码:----- ------------------------

<div id="google_translate_element" ></div>
<script type="text/javascript">
function googleTranslateElementInit() {
  new google.translate.TranslateElement({
    pageLanguage: 'en'
  }, 'google_translate_element');
}

</script><script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>

我想将代码放入 iframe 中,然后它会显示所有内容。

但是,在更改语言时,它会更改 iframe 中元素的语言,但不会影响 iframe 外部。

Well I want to use Google api translator in my website and when I am putting this api code in my html page it's working fine.

----------------------------------google translator code :-----------------------------

<div id="google_translate_element" ></div>
<script type="text/javascript">
function googleTranslateElementInit() {
  new google.translate.TranslateElement({
    pageLanguage: 'en'
  }, 'google_translate_element');
}

</script><script src="http://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>

I want to put the code in when I am putting this code in iframe then it shows everything.

But while changing the language it changes the language of elements in the iframe it doesn't affect outside the iframe.

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

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

发布评论

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

评论(1

许你一世情深 2024-08-29 23:05:46

我想这就是为什么使用 iframe 标签将外部文档包含到现有文档中的原因。

Google 翻译将仅翻译iframe 的内容,因为它不知道容器文档

另请参阅:

http://forums.macrumors.com/showthread.php?t= 467248

I guess this is why the iframe tag is used to include an external document into an existing one.

Google Translator will translate the content of the iframe only, since it has no clue about the container document.

Please see also:

http://forums.macrumors.com/showthread.php?t=467248

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