TABINDEX 不适用于超链接
<asp:HyperLink ID="SignIn" runat="server" CssClass="SignIn" TabIndex="3">Sign In</asp:HyperLink>
上面的问题是 TABINDEX 不起作用。我还有一个用户名和密码 TEXTBOXES,tabindex 可以使用它们,但超链接不起作用。
我在其他链接上也需要它,因此用按钮替换登录对我没有多大帮助,除非我用按钮替换所有链接。
如何找出超链接的 tabindex 不起作用的原因?
谢谢
<asp:HyperLink ID="SignIn" runat="server" CssClass="SignIn" TabIndex="3">Sign In</asp:HyperLink>
the problem with the above is that TABINDEX does not work. I have also a username and password TEXTBOXES and the tabindex works with them, but the hyperlink does not work.
i need it also on other links, so replacing a sign in with a button is not helping me much, unless i replace all links with a button.
how to figure out why the hyperlink's tabindex is not working?
thnx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您已设置超链接的 NavigateUrl。如果未设置,超链接将无法获得焦点,并且 tabindex 将不起作用。
Make sure you have set the NavigateUrl of your hyperlink. If it is not set the hyperlink cannot get focus and tabindex will not work.
刚刚发现它是什么:(经过很多麻烦...
在我使用的CSS中:
所以可能它正在获得焦点,但它只是不可见。
just found out what it was :( after much trouble...
in my css i used:
so probably it WAS getting the focus, but it was just not visible.