jQuery翻译
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery翻译相关的知识,希望对你有一定的参考价值。
$(document).ready(function(){ $.getScript('http://jquery-translate.googlecode.com/files/jquery.translate-1.3.2.min.js', function(){ //when the script is loaded $.translate(function(){ //when the Google Language API is loaded $.translate().ui('select', 'option') //generate dropdown .change(function(){ $('#translateit').translate( 'en', { //revert to english first not: 'select, pre' }) .translate( 'en', $(this).val(), { not: 'select, pre', async: true, toggle: true, walk: false }); }) .val('English') //select English as default .appendTo('#nav'); //insert the dropdown to the page }); }); }); </script>
以上是关于jQuery翻译的主要内容,如果未能解决你的问题,请参考以下文章
如何在 JS(jQuery) 中为翻译添加附加赋值(+=)?