如何聚焦“锚”元素?

时间:2013-11-02 08:33:31

标签: javascript jquery html

我想让a元素获得焦点,然后按 Enter 打开链接。

我使用$("#id").focus(),但它不起作用。

我该怎么做?

1 个答案:

答案 0 :(得分:10)

http://jsfiddle.net/RLJ5r/1/

工作正常。

HTML:

<a href="http://google.com" id="link">test</a>

jQuery的:

$("#link").focus();