Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改默认ctrl+home以将日期选择器重新打开到 enter 键。我将日期选择器绑定到输入,并且在选择日期后它当前不会更改焦点。
您可以单独绑定键事件,而不是尝试更改快捷键。
$("#datepicker").keydown(function(e){ if(e.which == 13 && !$(this).datepicker("widget").is(":visible")) { $(this).datepicker("show"); } });