搜尋

首頁  >  問答  >  主體

javascript - easyui的datebox修改後禁用值會發生變化,怎麼解決

配置如下

$ctl.datebox({
    formatter : function(date) {
        var y = date.getFullYear();
        var m = date.getMonth() + 1;
        var d = date.getDate();
        return y + '-' + m + '-' + d;
        },
    parser : function(s) {
    var t = Date.parse(s.replace(/-/g, "/"));
    if (!isNaN(t)) {
        return new Date(t);
    } else {
        return new Date();
    }
}

修改儲存執行$ctl.datebox('setValue', 'xxxx');
修改後執行$('#billdate').datebox({disabled : false} );$('#billdate').datebox({disabled : true});值會變回修改前的值
這個問題該怎麼解決

漂亮男人漂亮男人2708 天前727

全部回覆(1)我來回復

  • 为情所困

    为情所困2017-06-28 09:29:20

    已解決,使用combo的readonly方法可解決。

    $ctl.combo('readonly', false);
    $ctl.combo('readonly', true);

    回覆
    0
  • 取消回覆