码迷,mamicode.com
首页 > Web开发 > 详细

jQuery.i18n.properties实现前端国际化

时间:2015-11-18 10:37:56      阅读:1045      评论:0      收藏:0      [点我收藏+]

标签:

jQuery.i18n.properties的下载地址:
jquery.i18n.properties-1.0.9.js:下载地址:http://download.csdn.net/detail/snails_zx/9224023
jquery.i18n.properties-min-1.0.9.js:下载地址:http://download.csdn.net/detail/snails_zx/9224023

新建2个文件
strings.properties
strings_zh.properties

内容分别为
strings.properties

user=user name 
pwd = password

 

strings_zh.properties

user=用户名 
pwd = 密码

 

关键代码

jQuery.i18n.properties({ 
name : ‘strings‘, //资源文件名称 
path : ‘/i18n/‘, //资源文件路径 
mode : ‘map‘, //用Map的方式使用资源文件中的值 
language : ‘zh‘, 
callback : function() {//加载成功后设置显示内容 
alert($.i18n.prop(‘user‘)); 
alert($.i18n.prop(‘pwd‘)); 
} 
});

 

jQuery.i18n.properties实现前端国际化

标签:

原文地址:http://www.cnblogs.com/codingwhy/p/4973590.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!