0

我试图从输入中捕获按键,然后聚焦一个元素。

<input id="asdfasfd1" />
<input id="asdfasfd2" />

<select id="currency"><option>bla</option></select>

​$(function() {

   var currencyElement = $('#currency');

   $('#asdfasfd1').bind('keypress', function(event) {

      event.preventDefault();

      currencyElement.focus();
   });    
});

http://jsfiddle.net/KkXwT/6/适用于 IE 8,9,10 和 Chrome 23,但不适用于 Firefox 17,有人知道它为什么不起作用吗?

4

1 回答 1

2

它的工作......检查这个.. jsfiddle.net/KkXwT/21

在 FireFox 中,没有任何亮点让您觉得它很专注。我已经为你做了一些事情来让你意识到它的专注。

于 2012-12-13T09:22:33.103 回答