我有以下日期选择器代码:
$(".datepicker").datepicker({
showOn: "button",
buttonImage: "/Content/images/calendar.png",
buttonImageOnly: true,
buttonText:"Calendar",
beforeShow: function (textbox, instance) {
instance.dpDiv.css({
marginTop: (-textbox.offsetHeight) + 'px',
marginLeft: textbox.offsetWidth + 'px'
});
},
minDate: 0
});
当点击日历外部时,iPad 上的问题(在 Galaxy Tab 上一切正常)没有关闭。如何解决这个问题?