esc 键事件上的 jquery datepicker

发布于 2024-12-01 01:02:15 字数 321 浏览 1 评论 0原文

当用户打开日期选择器后单击 ESC 键(e.keyCode == 27)时,我尝试在日期选择器的输入框中输入一个日期值

我的测试用例:

1)点击输入框,出现日期选择器;

2) 用户决定通过单击esc 键取消选择。

3) 由于他没有选择任何日期,因此应将以下日期作为默认日期(01/01/2011)输入框中。

请分叉我的Fiddle

I'm trying to put a date value in the input box for the date picker when the user click on the key ESC (e.keyCode == 27) once he as open the datepicker.

My test case:

1) Click on the input box, the date picker show up;

2) The user decide to cancel the selection by clicking on the esc key.

3) The following date should be then put as default (01/01/2011) in the input box since he has not selected any date.

Please fork my Fiddle

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

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

发布评论

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

评论(1

一场信仰旅途 2024-12-08 01:02:15
$("#input").keyup(function(e) {
    if (e.keyCode == 27) {
        $("#input").val("01/01/2011");
    }
});

在这里查看它的实际效果:http://jsfiddle.net/nayish/SYwpy/46/

$("#input").keyup(function(e) {
    if (e.keyCode == 27) {
        $("#input").val("01/01/2011");
    }
});

See it in action here: http://jsfiddle.net/nayish/SYwpy/46/

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