簡體   English   中英

jQuery UI DatePicker 只顯示年份

[英]jQuery UI DatePicker to show year only

我正在使用 jQuery datepicker 來顯示日歷。我想知道我是否可以用它來只顯示“年份”而不是完整的日歷??

  $(function() {
    $('#datepicker1').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));
        }
    });
});​

風格應該是

.ui-datepicker-calendar {
    display: none;
    }​

工作演示

** NOTE : **如果有人反對“為什么我現在回答這個問題!” 因為我嘗試了這篇文章的所有答案,但沒有任何解決方案。所以我嘗試了我的方法並得到了解決方案所以我分享給下一個來者****

HTML

<label for="startYear"> Start Year: </label>
  <input name="startYear" id="startYear" class="date-picker-year" />   

jQuery

 <script type="text/javascript">
        $(function() {
            $('.date-picker-year').datepicker({
                changeYear: true,
                showButtonPanel: true,
                dateFormat: 'yy',
                onClose: function(dateText, inst) { 
                    var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
                    $(this).datepicker('setDate', new Date(year, 1));
                }
            });
        $(".date-picker-year").focus(function () {
                $(".ui-datepicker-month").hide();
            });
        });

</script>

2018 年,

$('#datepicker').datepicker({
    format: "yyyy",
    weekStart: 1,
    orientation: "bottom",
    language: "{{ app.request.locale }}",
    keyboardNavigation: false,
    viewMode: "years",
    minViewMode: "years"
});

您可以使用此引導程序日期選擇器

$("your-selector").datepicker({
    format: "yyyy",
    viewMode: "years", 
    minViewMode: "years"
});

“您的選擇器”您可以使用 id(#your-selector) 或 class(.your-selector)。

我遇到了同樣的問題,經過一天的研究,我想出了這個解決方案: http : //jsfiddle.net/konstantc/4jkef3a1/

 // *** (month and year only) *** $(function() { $('#datepicker1').datepicker( { yearRange: "c-100:c", changeMonth: true, changeYear: true, showButtonPanel: true, closeText:'Select', currentText: 'This year', 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).val($.datepicker.formatDate('MM yy (M y) (mm/y)', new Date(year, month, 1))); } }).focus(function () { $(".ui-datepicker-calendar").hide(); $(".ui-datepicker-current").hide(); $("#ui-datepicker-div").position({ my: "left top", at: "left bottom", of: $(this) }); }).attr("readonly", false); }); // -------------------------------- // *** (year only) *** $(function() { $('#datepicker2').datepicker( { yearRange: "c-100:c", changeMonth: false, changeYear: true, showButtonPanel: true, closeText:'Select', currentText: 'This year', onClose: function(dateText, inst) { var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val(); $(this).val($.datepicker.formatDate('yy', new Date(year, 1, 1))); } }).focus(function () { $(".ui-datepicker-month").hide(); $(".ui-datepicker-calendar").hide(); $(".ui-datepicker-current").hide(); $(".ui-datepicker-prev").hide(); $(".ui-datepicker-next").hide(); $("#ui-datepicker-div").position({ my: "left top", at: "left bottom", of: $(this) }); }).attr("readonly", false); }); // -------------------------------- // *** (year only, no controls) *** $(function() { $('#datepicker3').datepicker( { dateFormat: "yy", yearRange: "c-100:c", changeMonth: false, changeYear: true, showButtonPanel: false, closeText:'Select', currentText: 'This year', onClose: function(dateText, inst) { var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val(); $(this).val($.datepicker.formatDate('yy', new Date(year, 1, 1))); }, onChangeMonthYear : function () { $(this).datepicker( "hide" ); } }).focus(function () { $(".ui-datepicker-month").hide(); $(".ui-datepicker-calendar").hide(); $(".ui-datepicker-current").hide(); $(".ui-datepicker-prev").hide(); $(".ui-datepicker-next").hide(); $("#ui-datepicker-div").position({ my: "left top", at: "left bottom", of: $(this) }); }).attr("readonly", false); }); // --------------------------------
 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" /> <div class="container"> <h2 class="font-weight-light text-lg-left mt-4 mb-0"><b>jQuery UI Datepicker</b> custom select</h2> <hr class="mt-2 mb-3"> <div class="row text-lg-left"> <div class="col-12"> <form> <div class="form-label-group"> <label for="datepicker1">(month and year only : <code>id="datepicker1"</code> )</label> <input type="text" class="form-control" id="datepicker1" placeholder="(month and year only)" /> </div> <hr /> <div class="form-label-group"> <label for="datepicker2">(year only : <code>input id="datepicker2"</code> )</label> <input type="text" class="form-control" id="datepicker2" placeholder="(year only)" /> </div> <hr /> <div class="form-label-group"> <label for="datepicker3">(year only, no controls : <code>input id="datepicker3"</code> )</label> <input type="text" class="form-control" id="datepicker3" placeholder="(year only, no controls)" /> </div> </form> </div> </div> </div>

我知道這個問題已經很老了,但我認為我的解決方案對遇到此問題的其他人有用。 希望能幫助到你。

試試這個:
在 html 中添加以下內容

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

在js文件中添加

$(function() {
   $( "#datepicker" ).datepicker({dateFormat: 'yy',  changeYear: true,  changeMonth: false});
});

在css中添加

.ui-datepicker-calendar {
       display: none;
    }
    .ui-datepicker-month {
       display: none;
    }
    .ui-datepicker-prev{
       display: none;
    }
    .ui-datepicker-next{
       display: none;
    }

工作演示

將此代碼用於 jquery 時間選擇器。

 $(function() { $('#datepicker1').datepicker( { changeMonth: false, changeYear: true, showButtonPanel: false, dateFormat: 'yy', onClose: function(dateText, inst) { $(this).datepicker('setDate', new Date('2017')); } }).focus(function () { $(".ui-datepicker-month").hide(); $(".ui-datepicker-calendar").hide(); }); });
 <script src="https://code.jquery.com/jquery-1.9.1.js"></script> <script src="https://code.jquery.com/ui/1.9.1/jquery-ui.js"></script> <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" /> <input type="text" id="datepicker1"/>

您可以為此使用 dateFormat 屬性,例如:

$('#datepicker').datepicker({ dateFormat: 'yy' })

試試這段代碼,它對我有用:

$('#year').datepicker({
    format: "yyyy",
    viewMode: "years",
    minViewMode: "years"
});

我希望它也能為你帶來魔法。

看看這個 jquery 日歷只顯示年和月

或類似的東西

$("#datepicker").datepicker( "option", "dateFormat", "yy" );​

試試這種方式,它會隱藏日歷並只顯示年份

$(function() {
    $( "#datepicker" ).datepicker({dateFormat: 'yy'});
    });​

CSS

.ui-datepicker-calendar {
   display: none;
}

演示

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Styling links</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
hr{ 
    margin: 2px 0 0 0;
}
a{
    cursor:pointer;
}
#yearBetween{
    margin-left: 67px;
}

</style>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="YearPicker.js"></script>
</head>
 <body>
   <div class="form-group col-sm-8" style="display:inline-flex;">
    <div style="display:inline-flex;">
        <label class="col-sm-4">Select Year</label>
        <input type="text" id="txtYear1" class="form-control cols-sm-2"/>
        <img id="yearImage" src="https://cdn4.iconfinder.com/data/icons/VISTA/accounting/png/400/calendar_year.png" style="cursor: pointer;width:50px; height:35px;"></img>
    </div>
    <div id="divYear1" style="display:none;border: 0.5px solid lightgrey; height:auto;">
    <div style="background:lightgrey;height: 12%;">
        <a id="btnPrev1" class="btnPrev glyphicon glyphicon glyphicon-menu-left" style="float:left;margin: 4px;"></a>
        <input style="text-align: center; width: 43%; border: none; margin-left: 20%;" type="text" id="yearBetween" class="btn-default"/>
        <a id="btnNext1" class="btnNext glyphicon glyphicon glyphicon-menu-right" style="float:right;margin: 4px;"></a>
    </div>
    <hr/>
    <div id="yearContainer" style="width:260px; height:auto;">
    </div>
</div>
</div>
 </body>
</html>

// 將上面給定的 html 粘貼到 .html 文件中,然后將給定的 jquery 代碼粘貼到 .js 文件中#,您可以使用自定義 jquery、html 和 css 年份選擇器。

  $(document).ready(function(){
    // initial value of the start year for the dynamic binding of the picker.
    var startRange = 2000;

    // given the previous sixteen years from the current start year.
    $(".btnPrev").click(function(){
        endRange = startRange;
        startRange = startRange - 16;
        $("#yearBetween").text('');
        // finding the current div
        var container = event.currentTarget.nextElementSibling.parentElement.nextElementSibling.nextElementSibling;
        // find the values between the years from the textbox in year picker.
        createButtons(container);
        //bind the click function for the dynamically created buttons.
        bindButtons();
        var rangeValues = startRange+ " - "+(endRange-1) ;
        $("#yearBetween").val(rangeValues);
    });

    // given the next sixteen years from the current end year.
    $(".btnNext").click(function(){
        startRange = endRange;
        endRange = endRange + 16;
        //clearing the cuurent values of the picker 
        $("#yearBetween").text('');
        // finding the current div
        var container = event.currentTarget.parentElement.nextElementSibling.nextElementSibling;
        createButtons(container);
        //bind the click function for the dynamically created buttons.
        bindButtons();
        // find the values between the years from the textbox in year picker.
        var rangeValues = startRange+ " - "+(endRange-1) ;
        // writes the value in textbox shows above the button div.
        $("#yearBetween").val(rangeValues);
    });

    $("#txtYear1,#yearImage").click(function(){
        debugger;
        $("#divYear1").toggle();
        endRange = startRange + 16;
        //clearing the cuurent values of the picker 
        $("#yearBetween").text('');
        var container = "#yearContainer";
        // Creating the button for the years in yearpicker.
        createButtons(container);
        //bind the click function for the dynamically created buttons.
        bindButtons();
        // find the values between the years from the textbox in year picker.
        var rangeValues = startRange+ " - "+(endRange-1) ;
        // writes the value in textbox shows above the button div.
        $("#yearBetween").val(rangeValues); 
    });

    // binding the button for the each dynamically created buttons.
    function bindButtons(){
        $(".button").bind('click', function(evt)
        {
            debugger;
            $(this).css("background","#ccc");
            $("#txtYear1").val($(this).val());
            $('#divYear1').hide();
        });
    }

    // created the button for the each dynamically created buttons.
    function createButtons(container){
        var count=0;
        $(container).empty();
        for(var i= startRange; i< endRange; i++)
        {
            var btn = "<input type='button' style='margin:3px;' class='button btn btn-default' value=" + i + "></input>";
            count = count + 1;
            $(container).append(btn);
            if(count==4)
            {
                $(container).append("<br/>");
                count = 0;
            }
        }
    }

    $("#yearBetween").focusout(function(){  
        var yearValue = $("#yearBetween").val().split("-");
        startRange = parseInt(yearValue[0].trim());
        if(startRange>999 && startRange < 9985){
            endRange = startRange + 16;
            $("#yearBetween").text('');
            var container = "#yearContainer";
            createButtons(container);
            bindButtons();
            var rangeValues = startRange+ " - "+(endRange-1) ;
            $("#yearBetween").val(rangeValues);
        }
        else
        {
            $("#yearBetween").focus();
        }
    });

     $("#yearBetween, #txtYear1").keydown(function (e) {
        // Allow: backspace, delete, tab, escape, enter and .
        if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 110, 190]) !== -1 ||
             // Allow: Ctrl+A, Command+A
            (e.keyCode === 65 && (e.ctrlKey === true || e.metaKey === true)) || 
             // Allow: home, end, left, right, down, up
            (e.keyCode >= 35 && e.keyCode <= 40)) {
                 // let it happen, don't do anything
                 return;
        }
        // Ensure that it is a number and stop the keypress
        if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) {
            e.preventDefault();
        }
    });
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM