我试图从输入中捕获按键,然后聚焦一个元素。
<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,有些人知道它无法正常工作吗?
答案 0 :(得分:2)
它的工作......检查一下.. jsfiddle.net/KkXwT/21
在FireFox中,没有任何突出显示可让您感觉它是专注的。 我已经为你做了一些事情,意识到它的重点。