function loadBundles(lang) {
jQuery.i18n.properties({
name:'Messages',
path:'bundle/',
mode:'both',
language:lang,
callback: function() {
updateExamples();
}
});
}
function loadProperties(){
jQuery.i18n.properties({// 加载properties文件
name:'ISPindex', // properties文件名称
path:'i18n/', // properties文件路径
mode:'map', // 用 Map 的方式使用资源文件中的值
callback: function() {// 加载成功后设置显示内容
alert($.i18n.prop(“isp_index”));//其中isp_index为properties文件中需要查找到的数据的key值
}
});
}
[removed]
1