首页 > Web开发 > 详细

easyui时间控件设置为可清空——jquery-easyui-1.3.3(这个版本还没有buttons,网上的好多博文都是1.3.5之后的版本)

时间:2018-05-11 18:43:48      阅读:322      评论:0      收藏:0      [点我收藏+]

效果图:

技术分享图片

更改的源码jquery.easyui.min.js 11358行:

var _858=$("<div class=\"datebox-button\"></div>").appendTo(_856);
$("<a href=\"javascript:void(0)\" class=\"datebox-current\"></a>").html(opts.currentText).appendTo(_858);
$("<a href=\"javascript:void(0)\" class=\"datebox-clean\"></a>").html(opts.cleanText).appendTo(_858);
$("<a href=\"javascript:void(0)\" class=\"datebox-close\"></a>").html(opts.closeText).appendTo(_858);
_858.find(".datebox-current,.datebox-clean,.datebox-close").hover(function(){
$(this).addClass("datebox-button-hover");
},function(){
$(this).removeClass("datebox-button-hover");
});
_858.find(".datebox-current").click(function(){
_854.calendar.calendar({year:new Date().getFullYear(),month:new Date().getMonth()+1,current:new Date()});
});
_858.find(".datebox-clean").click(function(){    //clean——新增清空
$(_853).combo(‘setText‘,‘‘);  
$(_853).combo(‘setValue‘,‘‘); 
$(_853).combo("hidePanel");
});
_858.find(".datebox-close").click(function(){
$(_853).combo("hidePanel");
});
};
};

jquery.easyui.min.js 11441行:

}},currentText:"Today",cleanText:"Clean",closeText:"Close",okText:"Ok",formatter:function(date){

更改easyui-lang-zh_CN.js,41行增加:$.fn.datebox.defaults.cleanText = ‘清空‘;

完成。

 

easyui时间控件设置为可清空——jquery-easyui-1.3.3(这个版本还没有buttons,网上的好多博文都是1.3.5之后的版本)

原文:https://www.cnblogs.com/tldxh/p/9025363.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!