zoukankan      html  css  js  c++  java
  • 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')); 
    } 
    });
  • 相关阅读:
    openGL
    shader
    安卓2
    安卓
    错误整理
    3D图形学
    shaderlab
    MVC
    一、TCP扫描技术
    端口扫描技术
  • 原文地址:https://www.cnblogs.com/codingwhy/p/4973590.html
Copyright © 2011-2022 走看看