0

我正在尝试将控制器操作绑定到在文本区域、文本输入或内容可编辑中突出显示的文本。假设我有:

<input type="text" ng-model="name" placeholder="Enter Name">

使用 Angular 1.2.0,我如何查看文本框中突出显示的文本并在页面上为用户显示某些内容?

4

3 回答 3

3

这是一个使用$timeout. 它可能通过监视mouseupkeyup(或选择事件,如果它们存在)来改进。

http://jsfiddle.net/4XDR8/1/

HTML

<div ng-app="app" ng-controller="TestCtrl">
    <input type="text" placeholder="Enter Name" ng-get-selection="name">
    {{name}}
    <br/>
    <br/>here select all this text down here
</div>

JavaScript:

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

app.directive('ngGetSelection', function ($timeout) {
    var text = '';

    function getSelectedText() {
        var text = "";
        if (typeof window.getSelection != "undefined") {
            text = window.getSelection().toString();
        } else if (typeof document.selection != "undefined" && document.selection.type == "Text") {
            text = document.selection.createRange().text;
        }
        return text;
    }

    return {
        restrict: 'A',
        scope: {
            ngGetSelection: '='
        },
        link: function (scope, element) {
            $timeout(function getSelection() {
                var newText = getSelectedText();

                if (text != newText) {
                    text = newText;
                    element.val(newText);
                    scope.ngGetSelection = newText;
                }

                $timeout(getSelection, 50);
            }, 50);

        }
    };
});

app.controller('TestCtrl', function ($scope) {
    $scope.name = '';
});
于 2013-09-30T17:27:34.627 回答
1

您可以创建一个指令来利用输入元素selectionStartselectionEnd属性来实现您想要完成的任务,如下所示:

JS:

directive('watchSelection', function() {
    return function(scope, elem) {
        elem.on('mouseup', function() {
            var start = elem[0].selectionStart;
            var end = elem[0].selectionEnd;
            scope.selected = elem[0].value.substring(start, end);
            scope.$apply();
        });
    }; 
});

HTML:

<input type="text" ng-model="name" placeholder="Enter Name" watch-selection>

http://plnkr.co/edit/4LLfWk110p8ruVjAWRNv

于 2013-09-30T17:48:05.427 回答
0

以下是从字段中获取选定文本的方法input

http://jsfiddle.net/vREW8/

var input = document.getElementsByTagName('input')[0];
var selectedText = input.value.substring(input.selectionStart, input.selectionEnd);

你可以以任何你想要的方式将它与 Anuglar.js 一起使用。

于 2013-09-30T17:32:00.267 回答