我正在使用Bootstrap datepicker使用Bootstrap datepicker API。當我點擊按鈕時顯示日曆/日期選擇器彈出窗口,但它沒有將當前日期標記爲藍色字體,如API示例中所示。Bootstrap datepicker彈出窗口未顯示突出顯示的當前日期
我使用下面的代碼:
<body>
<div class="input-group date col-md-5" id="datepicker" data-date-format="dd-mm-yyyy">
<input class="form-control" size="56" type="text" value="" readonly>
<span class="input-group-addon"><span class="glyphicon glyphicon-th"></span></span>
</div>
<script src="js/bootstrap-datepicker.js"></script>
<script type="text/javascript">
$('#datepicker').datepicker();
</script>
</body>
日曆/日期選擇器示出彈出但當前的日期,如圖API實施例和也將鼠標光標不是指針不突出顯示爲藍色。
如果您正在使用此請幫我對這個問題
確保您添加的字體爲glyphicons。如果包含字體,「glyphicon」類將起作用 – Garry