ボックスが拡大したが、これは私のために働いたように、あなたはCSSを調整する必要があります。カレンダーの下部の位置を見つけて、その値をbottom
というCSSプロパティに適用します。
<span style="display:none;">
<div id="mybox">
<br/> <br/>
<input type="text" name="dateofbirth" id="dateofbirth" placeholder="Date of Birth"/>
<p class="textbox">
I want this text to be pushed down when datepicker opens
</p>
<br/> <br/> <br/> <br/>
</div>
</span>
$(function() {
$("#dateofbirth").datepicker();
$("#dateofbirth").on('click', function(){
var $this = $(this);
var calendarbtm = $("#ui-datepicker-div").position().top + $this.outerHeight(true);
$('.textbox').css({'top': calendarbtm});
})
});
.textbox {
position: absolute;
}
何このhttp://api.jqueryui.com/datepicker/#method-dialog @posは? – Edwin
https://github.com/fragaria/angular-daterangepickerでどのように使用するのですか? – standy
あなたの例は、角度の日付範囲ピッカーとは関係がありません。また、正確に何を望んでいるのか分かりません。 daterangePickerではなく、datepickerをレンダリングする方法を尋ねます。 – Edwin