如何在页面加载时进行自动谷歌翻译?
有没有办法对我插入谷歌翻译代码的页面进行自动翻译?通常用户必须选择某种语言,然后 Google 对其进行翻译,但我想要的是,在页面加载后,它会自动翻译预定义的语言。有没有办法可以将硬编码语言名称传递给翻译文档的 Google javascript 函数?
谢谢
Is there any way to do automatic translation of a page where I have inserted that Google translation code? Normally user has to select a certain language and then Google translates it, but what I want is, after the page is loaded, it automatically does translation of a pre-defined language. Is there a way I can pass hard coded language name to Google javascript function which translates the document?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我之前使用 jQuery Translate 库来完成此操作。尽管自动翻译存在一般局限性,但它的效果相当好。
请查看此处。您可以使用 jQuery 的选择器机制来确定在页面加载时自动翻译哪些内容(例如
$('body').translate('english');
)。I've used the jQuery Translate library to do this before. Notwithstanding the general limitations of automated translation, it worked pretty well.
Take a look here. You can use jQuery's selector mechanism to determine which content gets auto-translated on page load (something like
$('body').translate('english');
).