Questions tagged «uidatepicker»


14
jQuery日期选择器Z-index问题
我有一个幻灯片div,并且该div上方有一个datepicker字段。 当我单击“日期选择器”字段时,日期选择器面板显示在幻灯片div的后面。 我把脚本写成: http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js 所以我不能在CSS中更改datepicker的z-index。脚本正在生成的datepicker的z索引是1,我的幻灯片div(也通过googleajaxapi调用)z索引是5。所以我想我必须将日期选择器的z索引增加到大于5。有什么办法增加吗? 有人可以帮我吗?

16
jQuery Date Picker-禁用过去的日期
我正在尝试使用UI日期选择器选择日期范围。 在“从/到”字段中,人们应该无法查看或选择当前日期之前的日期。 这是我的代码: $(function() { var dates = $( "#from, #to" ).datepicker({ defaultDate: "+1w", changeMonth: true, numberOfMonths: 1, onSelect: function( selectedDate ) { var option = this.id == "from" ? "minDate" : "maxDate", instance = $( this ).data( "datepicker" ), date = $.datepicker.parseDate( instance.settings.dateFormat || $.datepicker._defaults.dateFormat, selectedDate, instance.settings ); dates.not( …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.