如何使 html 锚点在 ASP.NET MVC Web 应用程序中可访问?

发布于 2024-11-17 17:24:09 字数 269 浏览 4 评论 0原文

如果我在我的 asp.net mvc 2 Web 应用程序中使用锚标记,我如何确保用户可以“制表符”到它,以防他只是使用键盘?

我使用类似的东西但它无法访问?

 <a id="someanchor">Upload statement</a>

   $("#someanchor").click(function () {
            //some js
        });

如何创建可访问的锚标记?

If i use a anchor tag in my asp.net mvc 2 web app how can i make sure the user can 'tab' to it in case he is just using his keyboard?

I use something like this but it is not accessible?

 <a id="someanchor">Upload statement</a>

   $("#someanchor").click(function () {
            //some js
        });

how to create an anchor tag that is accesible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

终难愈 2024-11-24 17:24:09

您需要一个 href - 如果没有,锚点将被视为非交互式占位符。

<a id="someanchor" href="javascript:void(0)">Upload statement</a>

在这种情况下,href 存在,因此 A 最终成为可选项链接并可以通过键盘激活,但目标 URL - javascript:void(0) - 基本上是无操作,因此不会发生实际导航。

You need an href - without one, the anchor is considered to be a non-interactive placeholder.

<a id="someanchor" href="javascript:void(0)">Upload statement</a>

In this case, the href is present, so the A ends up being a tabbable link and can be activated via keyboard, but the target URL - javascript:void(0) - is basically a no-op, so no actual navigation occurs.

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