1. 程式人生 > >獲取資料字典的方法

獲取資料字典的方法

/**
 * 獲取資料字典
 *
 * 使用事例:
 * data{"gender":0};
 * @param key=gender 從介面中獲取到的要到資料字典中獲取的欄位,例如:gender代表性別:
 * @param value=data.gender 該欄位的值 即gender其值為0
 *
 * $.fn.getDictionary(key,value);
 */
(function(){
    var content={
            
            /**
             * 例子
             * gender:{
             *         "0":"男",
             *         "1":"女"
             * }
             */
    };
    $.fn.getDictionary=function(key,value){
        if(content[key]){
            if(content[key][value]){
                return content[key][value];
            }
        }
    }
})(jQuery);