bootstrap daterangepicker汉化以及扩展功能
程序员文章站
2022-07-05 20:39:09
bootstrap daterangepicker使用介绍,具体如下
一、扩展的功能
1、初始化时,会自动创建一个se...
bootstrap daterangepicker使用介绍,具体如下
一、扩展的功能
1、初始化时,会自动创建一个select标签;
2、当改变select值时,日期也会自动改变,并且会调用apply按钮的click事件
3、点击此处进行
4、github地址:
二、效果展示
三、使用方法
1、替换掉原先的 daterangepicker.js 文件。
2、调用方法和原先一样。 $('#config-demo').daterangepicker();
四、代码实现
/* 扩展该组件:增加一个select */ var _this = this; var selectitem = '<select id="dateranepicker_select" class="form-control width150 inline-block">'; selectitem += '<option>今日</option>'; selectitem += '<option>昨日</option>'; selectitem += '<option selected="selected">最近7日</option>'; selectitem += '<option>最近15日</option>'; selectitem += '<option>最近30日</option>'; selectitem += '<option>本月</option>'; selectitem += '<option>上月</option>'; selectitem += '</select>'; this.element.parent().append(selectitem); $(document).on('change','#dateranepicker_select',function(){ function auto0(num){ return num>10?num:'0'+num; } var val = $(this).val(); var c_start_date = new date(); var c_end_date = new date(); if(val=='今日'){ } else if(val=='昨日'){ c_start_date.setdate(c_start_date.getdate()-1); c_end_date.setdate(c_end_date.getdate()-1); } else if(val=='最近7日'){ c_start_date.setdate(c_start_date.getdate()-7); c_end_date.setdate(c_end_date.getdate()-1); } else if(val=='最近15日'){ c_start_date.setdate(c_start_date.getdate()-15); c_end_date.setdate(c_end_date.getdate()-1); } else if(val=='最近30日'){ c_start_date.setdate(c_start_date.getdate()-30); c_end_date.setdate(c_end_date.getdate()-1); } else if(val=='本月'){ var cyear = c_start_date.getfullyear(); var cmonth = c_start_date.getmonth(); c_start_date = new date(cyear,cmonth,1); c_end_date =new date(cyear+'-'+ (cmonth+1) +'-'+new date(cyear,cmonth+1,0).getdate()); } else if(val=='上月'){ var cyear = c_start_date.getfullyear(); var cmonth = c_start_date.getmonth()-1; c_start_date = new date(cyear,cmonth,1); c_end_date =new date(cyear+'-'+ (cmonth+1) +'-'+new date(cyear,cmonth+1,0).getdate()); } _this.setstartdate(c_start_date); _this.setenddate(c_end_date); timespanstr =auto0(c_start_date.getmonth()+1)+'/'+ auto0(c_start_date.getdate()) + '/'+c_start_date.getfullyear()+'-'+ auto0(c_end_date.getmonth()+1) + '/' +auto0(c_end_date.getdate()) + '/' +c_end_date.getfullyear(); _this.element.val(timespanstr); _this.hide(); _this.element.trigger('apply.daterangepicker', _this); /* 扩展该组件 end */ });
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇: 微信小程序自定义导航隐藏和显示功能
推荐阅读
-
bootstrap-table.js扩展分页工具栏(增加跳转到xx页)功能
-
bootstrap daterangepicker汉化以及扩展功能
-
bootstrap选项卡扩展功能详解
-
如何在springboot中扩展springmvc的功能以及使用拦截器
-
PHP 结合 Bootstrap 实现学生列表以及添加学生功能实现(继上篇登录及注册功能之后)
-
Bootstrap 结合 PHP ,做简单的登录以及注册界面及功能
-
bootstrap-table.js扩展分页工具栏(增加跳转到xx页)功能
-
bootstrap之扩展功能的介绍
-
bootstrap之扩展功能的介绍
-
bootstrap选项卡扩展功能详解