選択時間なしでbootstrap datetimepickerを使用したいのですが、機能しません。pickTimeパラメータにfalse値を指定しましたが、それでも機能しません。しかし、フォーマットおよび言語パラメータは機能しています。
ここにコードがあります!どうすれば修正できますか?
<script type="text/javascript">
$(function () {
$('#datetimepicker1').datetimepicker({
format: "dd MM yyyy",
pickTime: false,
autoclose: true,
todayBtn: true,
language: 'tr',
pickerPosition: "bottom-right"
});
});
</script>
<div class='input-group date' id='datetimepicker1'>
<span class="input-group-addon">Birtdate</span>
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"> </span>
</span>
</div>
多くのdatetimepickerプラグインがあるため、使用したプラグインの詳細を指定する必要があります。 http://eonasdan.github.io/bootstrap-datetimepicker/ からプラグインを使用する場合。私はあなたがそのオプションを間違って使用しているかもしれないと思います: http://eonasdan.github.io/bootstrap-datetimepicker/Options/ で詳細を読んでください。ここで私はほぼ削除し、1つだけ保持します。
$('#datetimepicker1').datetimepicker({
format: "dd MM yyyy"
});
このpickTimeオプションを削除してみて、minviewを使用してください:2
$(function() {
$('#datetimepicker4').datetimepicker({
minView : 2
});
});
カレンダーをプルダウンすると、日付ビューのみが表示される以下のコードを試してください。
$(function () {
$('#datetimepicker1').datetimepicker({
format: 'yyyy-mm-dd',
startView: 'month',
minView: 'month',
autoclose: true
});
});
私はこのウェブサイトをオンラインで見つけました、それはタイムピッカーを無効にします
http://tarruda.github.io/bootstrap-datetimepicker/
<div class="well">
<div id="datetimepicker4" class="input-append">
<input data-format="yyyy-MM-dd" type="text"></input>
<span class="add-on">
<i data-time-icon="icon-time" data-date-icon="icon-calendar">
</i>
</span>
</div>
</div>
<script type="text/javascript">
$(function() {
$('#datetimepicker4').datetimepicker({
pickTime: false
});
});
</script>