日期选择器不工作 jquery

Datepicker is not working jquery

PFB 代码,但我无法在按钮上显示日历 click.where 我是不是弄错了?

<!doctype html>

</head>
<body>
    <p>Date: <input type="button" id="datepicker"></p> 
</body>
<script>
    $(document).ready(function(){
        $("#datepicker").datepicker();
    });
</script>

Checkout Here

$("#datepicker").datepicker();

您在 jquery.check 中缺少包含序列,现在这可能是您的错误

<script src="code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/ui/1.11.3/jquery-ui.js"></script>

我使用你的代码工作正常