怎么获取textarea中选中文字

Posted ฅ˙-˙ฅ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么获取textarea中选中文字相关的知识,希望对你有一定的参考价值。

textarea设置select="saveSelectionText()"

//保存选中内容
            saveSelectionText: function () {
                var focusEle = document.activeElement.tagName;
                if (focusEle === ‘TEXTAREA‘) {
                    if (window.getSelection) {
                        $scope.mark.selectionText[0] = window.getSelection().toString();
                    } else if (document.selection && document.selection.type != "Control") {
                        $scope.mark.selectionText[0] = document.selection.createRange().text;
                    }
                    var ele = document.getElementById(‘textarea2‘);
                    if ($scope.mark.selectionText[0].length == 0) {
                        $scope.mark.selectionText[0] = ($scope.mark.Content || ‘‘).substring(ele.selectionStart, ele.selectionEnd)
                        if (!$scope.mark.selectionText[0]) {
                            $scope.mark.selectionText = [];
                            return false;
                        }
                    }
                    $scope.mark.selectionText[1] = ele.selectionStart.toString();
                    $scope.mark.selectionText[2] = (ele.selectionEnd - ele.selectionStart).toString();
                }
            },

这样,$scope.mark.selectionText保存了选中的文字,第一项为选中文字,第二项为开始位置,第三项为选中的长度。

 

blur时清空选中内容:blur=‘resetSelectionText()‘

//清空选中内容
            resetSelectionText: function () {
                $timeout(function () {
                    $scope.mark.selectionText = [];
                }, 500);
            },

 

以上是关于怎么获取textarea中选中文字的主要内容,如果未能解决你的问题,请参考以下文章

matlab中怎么在 textarea中显示带下划线的文字

从底部工作表对话框片段中获取价值

将代码片段插入数据库并在 textarea 中以相同方式显示

表格怎么让文字居中?

VB。如何把 TEXT 文本框中选中的字体 变成想要的颜色

textarea光标处插入文字