如下所示:
Box.defaults.cleanText = '清空';
(function ($) {
var buttons = $.extend([],$.fn.dateBox.defaults.buttons);
buttons.splice(1,{
text: function (target) {
return $(target).dateBox("options").cleanText
},handler: function (target) {
$(target).dateBox("setValue","");
$(target).dateBox("hidePanel");
}
});
$.extend($.fn.dateBox.defaults,{
buttons: buttons
});
})(jQuery)
以上这篇给easyui dateBox扩展一个清空的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/js/44538.html