jQuery.i18n.properties實現前端國際化


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')); 
} 
});

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM