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.
在焦点上,输入框中的文本在 Chrome 中被选中,在 FF 中工作正常。我该如何摆脱它
我的选择器如下
$('.edit').click(function(){ $('input').focus(); });
我使用的解决方法:
$('.edit').click(function(){ $('input').focus().val($('input').val()); });
JSFIDDLE