jQuery 插件来处理翻译?

发布于 2024-10-14 00:33:00 字数 87 浏览 2 评论 0原文

我最近遇到需要某种类型的“翻译”型插件,可以将特定字段或区域翻译成其他语言。

我不确定是否存在这样的东西 - 但我认为这可能是一个询问的好地方。

I recently have come across with a need for some type of "translation"-type plug-in that could translate specific fields or areas to other languages.

I am not sure if something like this even is out there - but I thought this might be a good place to ask.

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

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

发布评论

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

评论(1

短叹 2024-10-21 00:33:00

您可能想看看Sunday Morning jQuery 插件。它利用 Google Translate API,可以翻译单个单词(可能在点击事件上),整个字段,或者您可能需要做的任何其他事情。

使用示例:双击一个单词进行法语翻译

HTML

<div id="example2">     
     <p class="example">My kingdom for a horse!</p>
</div>

jQuery

$('#example2 .example').sundayMorningReset();           
  $('#example2 .example').sundayMorningBubble({
       source:'en',
       destination:'fr'
  });

查看附近的文档页面底部 - 因为它具有所有不同的实现方法,希望这会有所帮助。

You might want to take a look at the Sunday Morning jQuery plug-in. It utilizes the Google Translate API and can translate either single words (perhaps on a click event), entire fields, or whatever else you might need to do.

Example of usage: (Double clicking a word for French translation)

HTML

<div id="example2">     
     <p class="example">My kingdom for a horse!</p>
</div>

jQuery

$('#example2 .example').sundayMorningReset();           
  $('#example2 .example').sundayMorningBubble({
       source:'en',
       destination:'fr'
  });

Take a look through their documentation near the bottom of the page - as it features all the different methods of implementing it, hope this helps.

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