JavaScript 聚焦于元素/标签并使用光标键移动

发布于 2025-01-08 16:34:27 字数 164 浏览 0 评论 0原文

我创建了一个日历应用程序,一个全页日历,但问题是我希望每当日历页面加载时自动聚焦/选择今天的日期,并且我可以使用箭头键在日期之间移动。 例如,如果我使用左箭头键,前一个日期将获得焦点/选择等。

请给我任何可能的 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 技术交流群。

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

发布评论

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

评论(1

挽手叙旧 2025-01-15 16:34:27

为每个 div 分配一个 id。例如

<div class="calendar" id="day1"></div>
<div class="calendar" id="day2"></div>

,一些 javascript

var date = new date();  //GET DATE INFORMATION
var day = date.getDate(); //EXTRACT DAY OF MONTH

$(document).ready(function(){

  $('#day'+day).css("outline-style","solid"); //ADD FOCUS TO CURRENT DAY

  $('body').keyup(function(e){
    if (e.keycode == 37){  //IF LEFT ARROW
      $(".calendar").css("outline-style","none");
      day = day - 1;  
      $('#day'+day).css("outline-style","solid");
    }
    if (e.keycode == 39){  //IF RIGHT ARROW
      $(".calendar").css("outline-style","none");
      day = day + 1;
      $('#day'+day).css("outline-style","solid");
    }
  });

});

和一些 css

.calendar{
outline-style:none;
outline-width:1px;
outline-color:<YOUR CHOICE>;
}

该解决方案不考虑在该月的第一天时单击左箭头,在该月的最后一天时单击右箭头,但想法是存在的。

Assign an id to each div. For example

<div class="calendar" id="day1"></div>
<div class="calendar" id="day2"></div>

and some javascript

var date = new date();  //GET DATE INFORMATION
var day = date.getDate(); //EXTRACT DAY OF MONTH

$(document).ready(function(){

  $('#day'+day).css("outline-style","solid"); //ADD FOCUS TO CURRENT DAY

  $('body').keyup(function(e){
    if (e.keycode == 37){  //IF LEFT ARROW
      $(".calendar").css("outline-style","none");
      day = day - 1;  
      $('#day'+day).css("outline-style","solid");
    }
    if (e.keycode == 39){  //IF RIGHT ARROW
      $(".calendar").css("outline-style","none");
      day = day + 1;
      $('#day'+day).css("outline-style","solid");
    }
  });

});

and some css

.calendar{
outline-style:none;
outline-width:1px;
outline-color:<YOUR CHOICE>;
}

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.

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