Jquery DatePicker 使用下拉菜单更改月份导致窗口滚动
我只能在滚动页面时看到我的日期选择器。滚动后,如果我单击 datepicker ,它会按预期打开,但在使用下拉菜单更改月份后,窗口的滚动位置向上移动一点,导致 datepicker 隐藏。所以无法点击。
I can only see my datepicker when i scroll the page.After scrolling if i click on datepicker , it opens as expected but after changing month using dropdown, the scroll position of window is moved up little bit causing datepciker hidden. So can't click on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您使用日期选择器事件“beforeShow”来运行脚本以将页面滚动到最佳位置。
jQuery 插件 SCROLLTO 可以帮助解决这个问题。从其页面:
同样,您将使用在 beforeShow 选项中指定的函数来执行此操作。
I would suggest you use the date picker event, 'beforeShow' to run a script to scroll the page to the optimal position.
The jQuery plugin SCROLLTO can help with that. From its page:
Again, you would be doing this with the function you specify in the beforeShow option.