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