当文本长于文本框的宽度时,从头开始显示文本

时间:2016-08-12 06:38:20

标签: angularjs internet-explorer angular-ui-bootstrap mozilla microsoft-edge

在输入字段中添加某些文本并且文本超出其宽度时。现在,当焦点移到输入字段之外(模糊)时,我想从头开始显示其文本(而不是用户停止输入的位置)。

在Chrome中,它默认工作,即当焦点从输入字段中丢失时,Chrome会自动将光标移动到文本的开头。

在Mozilla,EDGE,IE中,这种行为无效。

1 个答案:

答案 0 :(得分:1)

这很简单。创建一个指令并使用以下答案:move cursor to the beginning of the input field?

在Mozilla上运行此示例

var app = angular.module("sa", []);

app.directive("fixCursorFoo", function () {
    return {
        restrict: 'A',
        link: function ($scope, $element) {
            $element.on("blur", function () {
                var inp = $element[0];
                if (inp.createTextRange) {
                    var part = inp.createTextRange();
                    part.move("character", 0);
                    part.select();
                } else if (inp.setSelectionRange) {
                    inp.setSelectionRange(0, 0);
                }
            })
        }
    }
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">

<div ng-app="sa">
  <input type="text" fix-cursor-foo class="form-control" />
</div>