JavaScript 聚焦于元素/标签并使用光标键移动
我创建了一个日历应用程序,一个全页日历,但问题是我希望每当日历页面加载时自动聚焦/选择今天的日期,并且我可以使用箭头键在日期之间移动。 例如,如果我使用左箭头键,前一个日期将获得焦点/选择等。
请给我任何可能的 JavaScript 或 jQuery 解决方案。我使用 div 来分隔日历的每个项目。
I have created an calendar application, a full page calendar, but the problem is I want that whenever the calendar page loads today date focused/selected automatically, and I can use arrow keys to move around dates.
For example if I use left arrow key the previous date get focused/selected and etc.
Please give me any possible solution in JavaScript or jQuery. I used divs to separate each item of calendar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为每个 div 分配一个 id。例如
,一些 javascript
和一些 css
该解决方案不考虑在该月的第一天时单击左箭头,在该月的最后一天时单击右箭头,但想法是存在的。
Assign an id to each div. For example
and some javascript
and some css
This solution does not account for clicking left arrow when it is the first of the month or right arrow when it is the last of the month, but the idea is there.