gpt4 book ai didi

jquery - 将 jquery 日期选择器位置设置为文本字段的顶部

转载 作者:行者123 更新时间:2023-12-01 00:00:08 24 4
gpt4 key购买 nike

Jquery 日期选择器显示在测试字段下。有时它会出现在文本字段的顶部。但我想始终将日期选择器显示在测试字段的顶部。怎么做?

最佳答案

以下代码将始终将日历放置在输入字段的顶部。

$('.txtDate').datepicker({
beforeShow: function (textbox, instance) {
var txtBoxOffset = $(this).offset();
var top = txtBoxOffset.top;
var left = txtBoxOffset.left;
var textBoxWidth = $(this).outerWidth();
console.log('top: ' + top + 'left: ' + left);
setTimeout(function () {
instance.dpDiv.css({
top: top-190, //you can adjust this value accordingly
left: left + textBoxWidth//show at the end of textBox
});
}, 0);

}});

关于jquery - 将 jquery 日期选择器位置设置为文本字段的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15658009/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com