我的 JSF 页面中的键盘快捷键

发布于 2024-10-20 11:09:49 字数 191 浏览 1 评论 0原文

我想知道是否有一种方法可以在我的 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 技术交流群。

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

发布评论

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

评论(1

情仇皆在手 2024-10-27 11:09:49

使用 HTML 提供的 accesskey 属性,该属性也在

<h:commandButton value="Add" accesskey="a" action="#{bean.add}" />

然后可以通过 Alt+AShift+Alt+A,取决于所使用的浏览器。

Use the HTML-provided accesskey attribute which is also mapped in <h:commandButton> and <h:commandLink>.

<h:commandButton value="Add" accesskey="a" action="#{bean.add}" />

This button can then be invoked by Alt+A or Shift+Alt+A, depending on the browser used.

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