如何使 html 锚点在 ASP.NET MVC Web 应用程序中可访问?
如果我在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一个 href - 如果没有,锚点将被视为非交互式占位符。
在这种情况下,href 存在,因此 A 最终成为可选项链接并可以通过键盘激活,但目标 URL - javascript:void(0) - 基本上是无操作,因此不会发生实际导航。
You need an href - without one, the anchor is considered to be a non-interactive placeholder.
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.