easyui方法的使用

         var cc;
var c1;
var c2;

    $(function(){
        cc=$('#cc').combo({
                    required:true,
                    editable:false
                });
        c1=$('#c1').combo({
                    required:true,
                    editable:false
                });
        c2=$('#c2').combo({
            required:true,
            editable:false
        });

        $('#sp').appendTo(cc.combo('panel'));
        $('#sp input').click(function(){
            var v = $(this).val();
            var s = $(this).next('span').text();
            alert(v+" "+s);
            cc.combo('setValue', v).combo('setText', s).combo('hidePanel');
            c1.combo(***'setValue***', '1').combo('setText', '请选择');
            c2.combo('setValue', '1').combo('setText', '请选择');
            c1.combo('***clear***');
        });
    });

你可能感兴趣的:(easyui方法的使用)