-1

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

在此处输入图像描述

我决定使用 jQuery。

如何使用用户无法更改的静态年份来实现这一点?

4

2 回答 2

1

更新:

您正在寻找的是这个 jquery 插件:

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


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

您可以设置日期格式,

并禁用采摘一年

$(function() {
    $( "#datepicker" ).datepicker({
        changeYear: false,
        dateFormat: 'dd.MM.'
    });
});
于 2013-07-12T14:07:14.520 回答
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>
于 2013-07-12T14:04:52.143 回答