原文转载自http://www.cnblogs.com/zfzz/archive/2012/11/29/2794621.html
最近在做struts2国际化。
1.之前见过分别写几种js文件来区分不同语言,然后在jsp中中判断语言根据配置文件中的key来定义<script src="">选取相应的js文件,个人觉得比较麻烦,后期维护很不方便。
2.可以用数组集合实现向js文件中传值的方法实现单独的js文件国际化。
jsp文件
<script type="text/javascript">
confirm = {
"common.delete":"<s:text name="common.delete"/>",
"common.add":"<s:text name="common.add"/>"
}
</script>
js文件:
var confirm = null;
function del(){
alert(confirm['commondelete']);
}
直接用confirm['commondelete']形式取key值