如何扩展jQuery datepicker,我只需要显示Year&现在几个月显示天数

时间:2013-07-12 14:03:09

标签: javascript jquery jquery-ui datepicker

我需要创建一个如下所示的日期选择器:

enter image description here

我决定使用jQuery。

如何使用用户无法更改的静态年来实现此目的?

2 个答案:

答案 0 :(得分:1)

<强>更新

你正在寻找的是这个jquery-plugin:

http://lucianocosta.info/jquery.mtz.monthpicker/


http://jqueryui.com/datepicker/#date-formats

您可以设置日期格式

并禁用

选择一年
$(function() {
    $( "#datepicker" ).datepicker({
        changeYear: false,
        dateFormat: 'dd.MM.'
    });
});

答案 1 :(得分:0)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
    <link rel="stylesheet" type="text/css" media="screen" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css">
<script type="text/javascript">
$(function() {
    $('.date-picker').datepicker( {
        changeMonth: true,
        changeYear: true,
        showButtonPanel: true,
        dateFormat: 'MM yy',
        onClose: function(dateText, inst) { 
            var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
            var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
            $(this).datepicker('setDate', new Date(year, month, 1));
        }
    });
});
</script>
<style>
.ui-datepicker-calendar {
    display: none;
    }
</style>
</head>
<body>
    <label for="startDate">Date :</label>
    <input name="startDate" id="startDate" class="date-picker" />
</body>
</html>