不懂楼主意思 图看不到
$('#nn').numberbox("setValue",value);  
不是就可以赋值了吗

解决方案 »

  1.   

    $.get("test.ashx",function(date){
    $('#nn').numberbox("setValue",data);
    })test.ashx中返回数据.
      

  2.   

    $("#empList_4_employeerColumnValue").attr("data-options","onSelect:function(...){onSelect(....)}");
    不要告诉别人是我说的......
      

  3.   

    利用jsonp
    当combobox的值发生改变时,则把这个selected的值传值过去,利用接口
    然后easyui-numberbox 绑定数据库传过来的值
    // 绑定值到easyui-numberbox 
    jQuery.ajax({
            url: "接口路径+参数=" + 选中的值,
            cache: false,
            dataType: "jsonp",
            jsonp: "callback",
            success: function (data) {
    //data为获取的值
    }
    });