如何显示jquery日期选择器?

发布于 2024-11-26 12:38:45 字数 125 浏览 0 评论 0原文

我正在尝试在侧栏中显示 JQuery ui datepicker 日历,并且我希望日历始终显示。 目前,我似乎只能在字段获得焦点或单击图标时执行此操作。

如何让日历显示在侧边栏块中,而无需等待焦点事件并在选择日期时消失?

I am trying to display JQuery ui datepicker calendar in a side bar and I would like the calendar to show all the time.
At the moment I only seem to be able to do that whenever a field receives focus or when the icon is clicked.

How can I get the calendar to appear in a sidebar block without waiting for a focus event and disappearing when a date is selected?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫瑾少女 2024-12-03 12:38:45

在 DIV 而不是输入上调用 datepicker()

http://jqueryui.com/demos/datepicker/#inline

从 jQuery UI 站点:

<script>
$(function() {
    $( "#datepicker" ).datepicker();
});
</script>
<div class="demo">
  Date: <div id="datepicker"></div>
</div>

Call datepicker() on a DIV instead of an input.

http://jqueryui.com/demos/datepicker/#inline

From the jQuery UI site:

<script>
$(function() {
    $( "#datepicker" ).datepicker();
});
</script>
<div class="demo">
  Date: <div id="datepicker"></div>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文