41

我有一个文本框和一个链接按钮。当我写一些文本,然后选择其中一些然后单击链接按钮时,从文本框中选择的文本必须与消息框一起显示。

我该怎么做?


当我单击下面文本框的提交按钮时,消息框必须显示 Lorem ipsum。因为在该区域中选择了“Lorem ipsum”。


如果我从页面中选择任何文本并单击它正在工作的提交按钮,但如果我将文本写入文本框并制作它,它不是。因为当我点击另一个空间时,文本框的选择被取消。

现在的问题是,当我从文本框中选择一个文本并单击任何其他控件或空间时,必须仍然选择被选中的文本。

它是如何完成的?

4

6 回答 6

43

好的,这是我的代码:

function ShowSelection()
{
  var textComponent = document.getElementById('Editor');
  var selectedText;

  if (textComponent.selectionStart !== undefined)
  {// Standards Compliant Version
    var startPos = textComponent.selectionStart;
    var endPos = textComponent.selectionEnd;
    selectedText = textComponent.value.substring(startPos, endPos);
  }
  else if (document.selection !== undefined)
  {// IE Version
    textComponent.focus();
    var sel = document.selection.createRange();
    selectedText = sel.text;
  }

  alert("You selected: " + selectedText);
}

问题,虽然我为 IE 提供的代码在很多网站上都有,但我无法让它在我当前系统上的 IE6 副本上工作。也许它对你有用,这就是我给它的原因。
您寻找的技巧可能是 .focus() 调用,将焦点返回给 textarea,以便重新激活选择。

[更新]我通过 onKeyDown 事件得到了正确的结果(选择内容):

document.onkeydown = function (e) { ShowSelection(); }

所以代码是正确的。同样,问题是通过单击按钮获得选择...我继续搜索。

[更新] 我没有成功绘制带有li标签的按钮,因为当我们单击它时,IE 取消选择之前的选择。上面的代码可以使用一个简单的input按钮,但是......

于 2008-11-09T10:57:54.013 回答
18

这是一个更简单的解决方案,基于在 mouseup 上发生文本选择的事实,因此我们为此添加了一个事件侦听器:

document.querySelector('textarea').addEventListener('mouseup', function () {
  window.mySelection = this.value.substring(this.selectionStart, this.selectionEnd)
  // window.getSelection().toString();
});
<textarea>
  Select some text
</textarea>
<a href="#" onclick=alert(mySelection);>Click here to display the selected text</a>

这适用于所有浏览器。

如果您还想通过键盘处理选择keyup,请使用相同的代码添加另一个事件侦听器。

如果不是因为2001 年(是的,14 年前)提交的这个 Firefox 错误window.mySelection,我们可以替换分配给with的值window.getSelection().toString(),它适用于 IE9+ 和所有现代浏览器,并且还可以在非 textarea 部分中进行选择的DOM。

于 2015-09-04T11:36:59.900 回答
4

function disp() {
  var text = document.getElementById("text");
  var t = text.value.substr(text.selectionStart, text.selectionEnd - text.selectionStart);
  alert(t);
}
<TEXTAREA id="text">Hello, How are You?</TEXTAREA><BR>
<INPUT type="button" onclick="disp()" value="Select text and click here" />

于 2014-03-16T07:09:13.080 回答
2

对于 Opera、Firefox 和 Safari,您可以使用以下功能:

function getTextFieldSelection(textField) {
    return textField.value.substring(textField.selectionStart, textField.selectionEnd);
}

然后,您只需将对文本字段元素(如 textarea 或 input 元素)的引用传递给函数:

alert(getTextFieldSelection(document.getElementsByTagName("textarea")[0]));

或者,如果您希望 <textarea> 和 <input> 拥有自己的 getSelection() 函数:

HTMLTextAreaElement.prototype.getSelection = HTMLInputElement.prototype.getSelection = function() {
    var ss = this.selectionStart;
    var se = this.selectionEnd;
    if (typeof ss === "number" && typeof se === "number") {
        return this.value.substring(this.selectionStart, this.selectionEnd);
    }
    return "";
};

然后,您只需执行以下操作:

alert(document.getElementsByTagName("textarea")[0].getSelection());
alert(document.getElementsByTagName("input")[0].getSelection());

例如。

于 2008-11-09T10:09:50.287 回答
1

jQuery-textrange 的忠实粉丝

下面是一个非常小的、独立的示例。下载 jquery-textrange.js 并复制到同一个文件夹。

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>jquery-textrange</title>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="jquery-textrange.js"></script>

<script>
/* run on document load **/
$(document).ready(function() {
    /* run on any change of 'textarea' **/
    $('#textareaId').bind('updateInfo keyup mousedown mousemove mouseup', function() {
        /* The magic is on this line **/
        var range = $(this).textrange();
        /* Stuff into selectedId.  I wanted to store this is a input field so it can be submitted in a form. **/
        $('#selectedId').val(range.text);
    });
});
</script>
</head>
<body>

    The smallest example possible using 
    <a href="https://github.com/dwieeb/jquery-textrange">
       jquery-textrange
    </a><br/>
    <textarea id="textareaId" >Some random content.</textarea><br/>
    <input type="text"  id="selectedId"  ></input>

</body>
</html>
于 2014-06-03T21:28:40.517 回答
0
//Jquery
var textarea = $('#post-content'); 
var selectionStart = textarea.prop('selectionStart');
var selectionEnd = textarea.prop('selectionEnd');
var selection = (textarea.val()).substring(selectionStart,selectionEnd);

//Javascript
var textarea = document.getElementById("post-content");   
var selection = (textarea.value).substring(textarea.selectionStart,textarea.selectionEnd);
于 2020-05-23T05:12:16.027 回答