最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to disable Bootstrap datetimepicker - Stack Overflow

programmeradmin1浏览0评论

I am using the Bootstrap datatimepicker (/). I'd like to disable the datetimepicker on page load.

$(document).ready(function () {
    $('#datetimepicker1').datetimepicker({
        defaultDate: new Date(),
        format: 'DD/MM/YYYY hh:mm:ss A'
    });
});

<div class='input-group date' id='datetimepicker1'>
    <input type='text' class="form-control" />
    <span class="input-group-addon">
        <span class="glyphicon glyphicon-calendar"></span>
    </span>
</div>

I have tried $('#datetimepicker1').prop('disabled', true) and $('#datetimepicker1').disable() from (). Neither work. So what is the best way to do it?

I am using the Bootstrap datatimepicker (https://eonasdan.github.io/bootstrap-datetimepicker/). I'd like to disable the datetimepicker on page load.

$(document).ready(function () {
    $('#datetimepicker1').datetimepicker({
        defaultDate: new Date(),
        format: 'DD/MM/YYYY hh:mm:ss A'
    });
});

<div class='input-group date' id='datetimepicker1'>
    <input type='text' class="form-control" />
    <span class="input-group-addon">
        <span class="glyphicon glyphicon-calendar"></span>
    </span>
</div>

I have tried $('#datetimepicker1').prop('disabled', true) and $('#datetimepicker1').disable() from (http://eonasdan.github.io/bootstrap-datetimepicker/Functions/#disable). Neither work. So what is the best way to do it?

Share Improve this question edited May 19, 2017 at 8:24 VincenzoC 31.5k12 gold badges100 silver badges121 bronze badges asked May 18, 2017 at 20:14 user7933742user7933742 2
  • you could just set the display: none; on your div if you would like a quick solution – Ali Commented May 18, 2017 at 20:16
  • That is not a good solution because the user can just set the display to appear and mess up the logic – user7933742 Commented May 18, 2017 at 20:23
Add a ment  | 

3 Answers 3

Reset to default 3

try the following code $('#datetimepicker1 > .form-control').prop('disabled', true); please check the link https://jsfiddle/komal10041992/DTcHh/32829/

You were close to solution, you have to use disable(), but you have to remember that, as docs says:

Note All functions are accessed via the data attribute e.g. $('#datetimepicker').data("DateTimePicker").FUNCTION()

So you have to add .data("DateTimePicker") to your $('#datetimepicker1').disable().

Here a working sample:

$('#datetimepicker1').datetimepicker({
  defaultDate: new Date(),
  format: 'DD/MM/YYYY hh:mm:ss A'
});

//To Disable use disable() function 
$('#datetimepicker1').data("DateTimePicker").disable();
//To Enable use enable() function 
//$('#datetimepicker1').data("DateTimePicker").enable();
<link href="//cdnjs.cloudflare./ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.css" rel="stylesheet"/>
<link href="//cdnjs.cloudflare./ajax/libs/bootstrap-datetimepicker/4.17.47/css/bootstrap-datetimepicker.css" rel="stylesheet"/>

<script src="//cdnjs.cloudflare./ajax/libs/jquery/2.1.3/jquery.js"></script>
<script src="//cdnjs.cloudflare./ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="//cdnjs.cloudflare./ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.js"></script>
<script src="//cdnjs.cloudflare./ajax/libs/bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js"></script>

<div class='input-group date' id='datetimepicker1'>
    <input type='text' class="form-control" />
    <span class="input-group-addon">
        <span class="glyphicon glyphicon-calendar"></span>
    </span>
</div>

$(document).ready(function () {
    $('#datetimepicker1').datetimepicker({
        defaultDate: new Date(),
        format: 'DD/MM/YYYY hh:mm:ss A'
    }).find("input:first").prop("disabled", true);
});

发布评论

评论列表(0)

  1. 暂无评论