jQuery翻译

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery翻译相关的知识,希望对你有一定的参考价值。

  1. <script type='text/javascript'>
  2. $(document).ready(function(){
  3. $.getScript('http://jquery-translate.googlecode.com/files/jquery.translate-1.3.2.min.js', function(){ //when the script is loaded
  4. $.translate(function(){ //when the Google Language API is loaded
  5. $.translate().ui('select', 'option') //generate dropdown
  6.  
  7.  
  8. .change(function(){
  9. $('#translateit').translate( 'en', { //revert to english first
  10. not: 'select, pre'
  11. })
  12.  
  13. .translate( 'en', $(this).val(), {
  14. not: 'select, pre',
  15. async: true,
  16. toggle: true,
  17. walk: false
  18. });
  19. })
  20. .val('English') //select English as default
  21. .appendTo('#nav'); //insert the dropdown to the page
  22. });
  23. });
  24. });
  25. </script>

以上是关于jQuery翻译的主要内容,如果未能解决你的问题,请参考以下文章

jQuery UI 日期选择器翻译

如何在 JS(jQuery) 中为翻译添加附加赋值(+=)?

jquery 到 php 的翻译器?

react与jQuery对比,有空的时候再翻译一下

在Javascript / Jquery的Twig模板中添加翻译

$.when()方法翻译