我正在尝试将控制器操作绑定到在文本区域、文本输入或内容可编辑中突出显示的文本。假设我有:
<input type="text" ng-model="name" placeholder="Enter Name">
使用 Angular 1.2.0,我如何查看文本框中突出显示的文本并在页面上为用户显示某些内容?
我正在尝试将控制器操作绑定到在文本区域、文本输入或内容可编辑中突出显示的文本。假设我有:
<input type="text" ng-model="name" placeholder="Enter Name">
使用 Angular 1.2.0,我如何查看文本框中突出显示的文本并在页面上为用户显示某些内容?
这是一个使用$timeout
. 它可能通过监视mouseup
和keyup
(或选择事件,如果它们存在)来改进。
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 = '';
});
您可以创建一个指令来利用输入元素selectionStart
的selectionEnd
属性来实现您想要完成的任务,如下所示:
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>
以下是从字段中获取选定文本的方法input
:
var input = document.getElementsByTagName('input')[0];
var selectedText = input.value.substring(input.selectionStart, input.selectionEnd);
你可以以任何你想要的方式将它与 Anuglar.js 一起使用。