TABINDEX 不适用于超链接

发布于 2024-09-01 12:46:09 字数 308 浏览 8 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(2

顾冷 2024-09-08 12:46:09

确保您已设置超链接的 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.

沧笙踏歌 2024-09-08 12:46:09

刚刚发现它是什么:(经过很多麻烦...

在我使用的CSS中:

outline: none;

所以可能它正在获得焦点,但它只是不可见。

just found out what it was :( after much trouble...

in my css i used:

outline: none;

so probably it WAS getting the focus, but it was just not visible.

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