1

I want to disable all dates before today in a bootstrap datepicker. I have digged the internet and everyone has this solution but why is it not working in my code?

<input type="text" id="date"/>
$(window).load(function(){
   $('#date').datepicker({
        minDate:0
   });
});
4

2 回答 2

1
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" rel="Stylesheet"
    type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script language="javascript">
    $(document).ready(function () {
        $("#txtdate").datepicker({
            minDate: 0
        });
    });
</script>
</head>
<body>
Date :
<input id="txtdate" type="text">
</body>
</html>
于 2016-07-18T12:53:32.090 回答
0

Try this!

    /* Apply the right format to the minDate option */
    $(document).ready(function () {
        $("#txtdate").datepicker({
            minDate: new Date();
        });
    });
于 2018-02-12T13:57:33.197 回答