0

我有以下日期选择器代码:

$(".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 上一切正常)没有关闭。如何解决这个问题?

4

1 回答 1

0

尝试将 UIPicker 的属性设置为“setHidden:YES”

于 2012-10-09T10:35:34.353 回答