当选定日期落在组合框上时,JQuery日历选择不起作用

时间:2016-02-11 11:12:13

标签: jquery combobox calendar

当我从JQuery日历中选择日期时,如果选择日期落在Combobox上,那么它就无法正常工作。它选择组合框值而不是日历选择值。

2 个答案:

答案 0 :(得分:0)

这是Drop框的Z-Index中的问题,它悬浮在Calendar Pop Up上并将日历选择到Drop Box。

   So I just modified the CSS of the Combo Box which was not working as it was inheriting the CSS of the JQuery Combo box Style with important.

如下所示:

      .DropCSS{
                font-size: 1em;
                z-index: 10 !important;

}

它对我有用,就像哇.......... !!!

非常感谢你的帮助。

答案 1 :(得分:-1)

检查一下,

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
$(function () {          
            $("#date").datepicker({
                changeMonth: true,
                changeYear: true,
                showOn: "button"
            });          
        });