jQuery UI Datepicker 转到日期 URL

发布于 2024-08-09 01:47:25 字数 292 浏览 5 评论 0原文

有谁知道是否可以使用 jQuery UI Datepicker,并在单击日期时将 document.location 设置为该日期,并附加到预设 URL?

因此,如果我单击其中一个日期,它可能会将我引导至:

http:// /www.mysite.com?date=2009-10-25

我需要使用它作为快速导航我的网站日历的快速方法。

有想法吗?

Does anyone know if it is possible to use the jQuery UI Datepicker, and when clicking on a date, set the document.location to that date, appended to a preset URL?

So, if I clicked on one of the dates, it might direct me to:

http://www.mysite.com?date=2009-10-25

I need to just use this as a quick way to quickly navigate my website calendar.

Ideas?

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

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

发布评论

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

评论(3

懒的傷心 2024-08-16 01:47:26

我做了一个小例子,它对我有用,只需更改日期格式:)

$().ready(function(){  
    $('#datepicker').click(function(){
        window.location.replace("http://www.mysite.com/?date=" + $('#datepicker').val());
    });
});

I did small example, it works for me just change date format :)

$().ready(function(){  
    $('#datepicker').click(function(){
        window.location.replace("http://www.mysite.com/?date=" + $('#datepicker').val());
    });
});
漫漫岁月 2024-08-16 01:47:26

我假设您从 Jqueryui.com 下载带有示例的 datapicker,以便您可以从日历中获取选择的日期:

$('#datepicker').val()

因此将其粘贴到 onclick() 函数或 onchane() 函数中

I assume you download datapicker from Jqueryui.com with examples so you can get choosen date from calendar with:

$('#datepicker').val()

so paste it in onclick() function or onchane() function

三月梨花 2024-08-16 01:47:26

只需给它一个要调用的 onSelect 函数即可。

Just give it an onSelect function to call.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文