Home  >  Article  >  Web Front-end  >  Use of bootstrap-datatimepicker plug-in

Use of bootstrap-datatimepicker plug-in

PHPz
PHPzOriginal
2018-07-09 17:24:182274browse

This article mainly introduces the use of bootstrap-datatimepicker plug-in, which has certain reference value. Now I share it with you. Friends in need can refer to it. [Related video recommendation: Bootstrap Tutorial]

        1、引入相关的css、js文件(因为是bootstrap的,首先应该引入bootstrap.css和bootstrap.js);
         
         
        
         

        2、主要是设置开始时间从今天开始,今天之前的时间不能选;结束时间要大于开始时间
        $('#start_time').datetimepicker({
        format: 'yyyy-mm-dd hh:ii',
        autoclose: true,
        todayBtn: true,
        todayHighlight: true,
        startDate: new Date()
    }).on('changeDate',function(ev){
        var start_time=$("#start_time").val();
        $("#end_time").datetimepicker('setStartDate',start_time);
        $("#start_time").datetimepicker('hide');
    });

    $('#end_time').datetimepicker({
        format: 'yyyy-mm-dd hh:ii',
        autoclose: true,
        todayBtn: true,
        todayHighlight: true,
    }).on('changeDate',function(ev){
        var end_time=$("#end_time").val();
        $("#start_time").datetimepicker('setEndDate',end_time);
        $("#end_time").datetimepicker('hide');
    });

The above is the entire content of this article. I hope it will be helpful to everyone’s learning. For more related content, please pay attention to PHP Chinese website!

Related recommendations:

js amount processing plus two decimal places

Node.js uses superagent to simulate GET/POST requests

AngularJS front-end paging implementation

The above is the detailed content of Use of bootstrap-datatimepicker plug-in. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn