关于我们

质量为本、客户为根、勇于拼搏、务实创新

< 返回新闻公共列表

comboxbox加载数据字典

发布时间:2019-11-22 14:08:55

combobox 用法,加载数据字典,代码如下:

var theSex = {

    //alert("数据已经得到,先保存缓存!");

    getCategory: function () {

        $.getJSON('/sys/ashx/dichandler.ashx?categoryId=9', function (data) {

            $('body').data('sexDic', data); //这里可以乱取名字sexDic,意思是得到数据并赋值给body

        });

    },

    init: function () {

        var sexDic = $('body').data('sexDic');

        sexDic = JSON.stringify(sexDic).replace(/KeyId/g, "id").replace(/Title/g, "text");

        top.$('#txt_sex').combobox({ data: eval(sexDic), valueField: 'text', textField: 'text', editable: false, required: true, missingMessage: '请选择性别', disabled: false });

    }

};



/template/Home/Zkeys/PC/Static