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();