属性自动对焦是否可以在超链接元素(<a>)?

时间:2019-03-12 19:02:04

标签: html5 hyperlink autofocus

I need to put the "autofocus" attributes on hyperlink elements like this:

<a href="mywebsite.com" autofocus focus="javascript code">my link</a>

It seems that "autofocus" works only on input elements.

But the focus event works on hyperlink elements.

Maybe I need to change something on my hyperlink elements?

1 个答案:

答案 0 :(得分:1)

根据https://www.w3schools.com/tags/att_autofocus.asp<a>标签不能具有“自动对焦”属性。

但是,通过使用jQuery,可以:

<script>
    document.getElementById("myId").focus();
</script>