Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作一个a元素来获得焦点,然后按Enter打开链接。
a
<a id='link'>test</a>
我用$("#link").focus(),但它不起作用。
$("#link").focus()
我怎样才能做到这一点?
http://jsfiddle.net/RLJ5r/1/
工作正常。
HTML:
<a href="http://google.com" id="link">test</a>
jQuery:
$("#link").focus();