日期选择器不在codeigniter中工作

时间:2017-01-20 10:59:28

标签: php jquery

此代码在简单的HTML页面上正常工作,但不适用于CodeIgniter视图。

<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css">
<script>
    $(document).ready(function(){
        // Datepicker Popups calender to Choose date
        $(function() {
            $("#datepicker").datepicker();
            $("#format").change(function() {
                $("#datepicker").datepicker("option", "dateFormat", $(this).val());
            });
        });
    });
</script>

<input type="text" name="selected_date" id="datepicker"/>

0 个答案:

没有答案