多语言代码中出现错误

本文关键字:错误 语言 代码 | 更新日期: 2023-09-27 17:54:55

这是我的代码

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
 <script src="http://jquery-translate.googlecode.com/files/jquery.translate-1.3.7.min.js"></script>
<script type="text/javascript">
    jQuery(function($) { //when DOM is ready
       // $('body').css('height', '100px');

        $.translate(function() {  //when the Google Language API is loaded
            function translateTo(destLang) { //this can be declared in the global scope too if you need it somewhere else
               // alert('lang' + destLang);
                $('body').translate('english', destLang, {   //translate from english to the selected language
                    not: '.jq-translate-ui',  //by default the generated element has this className
                    fromOriginal: true   //always translate from english (even after the page has been translated)
                });
            }

            //you can generate other controls as well, not just a dropdown:
            $.translate.ui('ul', 'li', 'span')
      .appendTo('body')    //insert the element to the page
      .css({ 'color': 'blue', 'background-color': 'white' })
      .find('span')
      .css('cursor', 'pointer')
      .click(function() {   //when selecting another language
          translateTo($(this).text());
          //$.cookie('destLang', $(this).text());
          // set a cookie to remember the selected language
          // see: http://plugins.jquery.com/project/Cookie
          return false; //prevent default browser action
      });

             var destLang = $.cookie('destLang'); //get previously translated language
            if (destLang)  //if it was set then
                translateTo(destLang);

        }); //end of Google Language API loaded
    });  //end of DOM ready
</script>
I m getting error at line
    var destLang = $.cookie('destLang');

错误是:

Microsoft JScript运行时错误:对象不支持此属性或方法

请帮帮我。

多语言代码中出现错误

需要jQuery cookie插件:http://plugins.jquery.com/project/Cookie