我正在运行以下代码,但是setSelectionRange
再次在Safari中聚焦输入,从而创建了模糊/聚焦循环。有什么办法解决吗?
$("input").on('blur', function(e) {
$(this).get(0).setSelectionRange(0,0);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" value="A bunch of text text text text text text text text text" style="width: 100px; text-overflow: ellipsis;">