1
我有一個datepicker日曆漂浮的問題。我需要阻止它這樣做。我需要它留在輸入框。停止datepicker從左右浮動
$('.date').datepicker({
format: 'mm-dd-yyyy',
autoclose: true
});
$('.close-button').unbind();
$('.close-button').click(function() {
if ($('.datepicker').is(":visible")) {
$('.date').datepicker('hide');
} else {
$('.date').datepicker('show');
}
});
下面是小提琴: https://jsfiddle.net/qgzwwt70/4/
幫助。
你能否更具體? 「留在輸入框」是什麼意思? –
er ...防止日曆在滾動時向上移動。需要將日曆保留在輸入框下方或鎖定(就像第一次出現時那樣)。 –
可能的重複:http://stackoverflow.com/questions/12351871/jquery-date-picker-not-moving-with-page-scroll –