bootstrap日期选择器当前日期不突出显示

时间:2017-02-23 07:54:44

标签: jquery

Bootstrap日期选择器未突出显示打开日历上的当前日期。没有错误即将发生。我今天试过高光=真,但没有用。任何人都可以指出问题。

enter image description here

代码是: -

<input type="text" value="" class="datepicker" maxlength="10">

 $('.datepicker').datepicker({todayHighlight:true});

1 个答案:

答案 0 :(得分:0)

您的代码很好,请确保按正确的顺序加载资源,检查控制台是否有任何错误,请尝试我的代码

&#13;
&#13;
$('.datepicker').datepicker({todayHighlight:true});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/js/bootstrap-datepicker.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/css/bootstrap-datepicker.css" rel="stylesheet"/>

<input type="text" value="" class="datepicker" maxlength="10">
&#13;
&#13;
&#13;