Datepicker没有显示弹出窗口

时间:2014-06-19 09:41:08

标签: jquery jquery-ui datepicker

我在我的项目中使用了jquery-ui date picker。但它没有显示弹出窗口..这是代码。请帮助我..

<tr>
    <td>Date of Submit<span class="red">*</span></td>
    <td height="48">:</td>
    <td height="48"><input type="text" id="dateof_sub" name="dateof_sub" class="normal">
    <span class="red" id="date_submit_error"></span></td>
</tr>

<link rel="stylesheet" href="themes/base/jquery.ui.all.css">

<script src="ui/jquery.ui.core.js"></script>
<script src="ui/jquery.ui.widget.js"></script>
<script src="ui/jquery.ui.datepicker.js"></script>
<link rel="stylesheet" href="demos.css">
<script>
    $(function() {
        $( "#dateof_sub" ).datepicker({
            changeMonth: true,
            changeYear: true
        });
    });
</script>

1 个答案:

答案 0 :(得分:0)

您需要包含jQuery引用才能使jQuery UI正常工作 - 请参阅 jQueryUI

这两个引用就足够了 - Datepicker

<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>