为什么datepicker的Jquery没有关闭onclick,除此之外?

时间:2016-02-08 09:03:41

标签: javascript jquery datepicker

我使用datepicker Jquery来选择日期,下面是我的代码:

<link rel="stylesheet"   href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
    jQuery(function() {
        jQuery( "#datepicker" ).datepicker({dateFormat: "yy-mm-dd"});
        jQuery("#datepicker").blur(function(e) { 
            jQuery(this).datepicker("hide");  
        });
    });
</script>

当我使用.blur函数时,它可以正常工作。但是,我无法改变月份。当我改变月份时,它会隐藏。我该如何解决这个问题?

0 个答案:

没有答案