easyui databox 设置清空按钮



var buttons = $.extend([], $.fn.datebox.defaults.buttons);  
    buttons.splice(0,2, {  
    text: '清空',  
    handler : function(target) {  
        $(target).combo("setValue", "").combo("setText", ""); // 设置空值  
        $(target).combo("hidePanel"); // 点击清空按钮之后关闭日期选择面板  
    }  
});  

$.fn.datebox.defaults.buttons = buttons;  


splice()方法是 javascript 方法 参考:http://www.runoob.com/jsref/jsref-splice.html



你可能感兴趣的:(easyui databox 设置清空按钮)