add loadProperties.js

This commit is contained in:
hmm 2014-09-02 15:37:12 +08:00
parent 8c1e9dd11f
commit c55daae043
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
$(function(){
loadProperties();
}
);
function loadProperties(){
jQuery.i18n.properties({// 加载资浏览器语言对应的资源文件
name:'i18n', // 资源文件名称
path:'i18n/', // 资源文件路径
mode:'map', // 用 Map 的方式使用资源文件中的值
} );
}