Datepicker jQuery UI不起作用

时间:2014-11-02 08:43:44

标签: jquery jquery-ui datepicker

我尝试使用jQuery UI中的datepicker,但它不起作用,这是我的代码。我应该添加什么才能使它工作?

<html lang="us">
    <head>
        <meta charset="utf-8">
        <title>jQuery UI Example Page</title>
        <link href="jquery-ui.css" rel="stylesheet">

        <script src="external/jquery/jquery.js"></script>
        <script src="jquery-ui.js"></script>
        <script>
            $(function () {
                $("#datepicker").datepicker();
            });
        </script>
    </head>
    <body>
        <p>Date: <input type="text" id="datepicker"></p>
    </body>
</html>

1 个答案:

答案 0 :(得分:0)

您需要一个输入字段,日期选择器可以存储所选值。 js中的#datepicker定义了datepicker库查找id为datepicker的元素(参见下面的输入字段):

<html lang="us">
<head>
<meta charset="utf-8">
<title>jQuery UI Example Page</title>
<link href="jquery-ui.css" rel="stylesheet">
<script src="external/jquery/jquery.js"></script>
<script src="jquery-ui.js"></script>
<script>
    $(function() {
        $( "#datepicker" ).datepicker();
    });
</script>
</head>
<body>

<p>Date: <input type="text" id="datepicker"></p>

</body>
</html>

<强>更新

由于您似乎还有其他一些问题,这个版本是否适合您?

<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script>
    $(function() {
        $( "#datepicker" ).datepicker();
    });
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
</html>