我的 JSF 页面中的键盘快捷键
我想知道是否有一种方法可以在我的 JSF 页面中创建一个简单的键盘快捷键
,每个页面都有几个按钮,我希望能够让用户按 alt+a 之类的键来激活名为“将报告添加到组”的按钮'
在 .net 中你只需放置一个 &在你想要成为快捷键的字母之前,JSF 中是否有这样的选项(除了编写一些我在网上找到的 javascript 代码之外)
I was wondering if there is a way to make an easy keyboard shortcut in my JSF page
each page has several buttons and I would like to be able to have a user press something like alt+a to activate a button called 'Add Report to Group'
in .net you just put an & before the letter you want to be the shortcut key, is there an option like this in JSF (apart from writing some javascript code which is what I found on the web)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 HTML 提供的 accesskey 属性,该属性也在
和
。然后可以通过 Alt+A 或 Shift+Alt+A,取决于所使用的浏览器。
Use the HTML-provided
accesskey
attribute which is also mapped in<h:commandButton>
and<h:commandLink>
.This button can then be invoked by Alt+A or Shift+Alt+A, depending on the browser used.