Bootstrap日期选择器未突出显示打开日历上的当前日期。没有错误即将发生。我今天试过高光=真,但没有用。任何人都可以指出问题。
代码是: -
<input type="text" value="" class="datepicker" maxlength="10">
和
$('.datepicker').datepicker({todayHighlight:true});
答案 0 :(得分:0)
您的代码很好,请确保按正确的顺序加载资源,检查控制台是否有任何错误,请尝试我的代码
$('.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;