获取高亮文本(Get the highlighted text)

2019-07-30 04:36发布

当我选择在一些文本<div>我想,突出的文字出现在这仅仅是在div下方的文本框中。 我该怎么做?

<div>
    My text goes here.
</div>
<asp:TextBox ID="txt" runat="server"/>

Answer 1:

工作演示 http://jsfiddle.net/KgtW5/ 或使用DIV演示 http://jsfiddle.net/KgtW5/3/

.on API: http://api.jquery.com/on/

我已经定制它为您的需要的人。

很好的链接:和BIG提示: 获取高亮/选择文本

希望演示可以帮助你,让我再知道如果我错过了什么! :)

$('textarea').on('select', function() {
    var foo = getSelectionText();
    $('#hulk').val(foo);
});


function getSelectionText() {
    var text = "";
    if (window.getSelection) {
        text = window.getSelection().toString();
    } else if (document.selection && document.selection.type != "Control") {
        text = document.selection.createRange().text;
    }
    return text;
}​

HTML

<textarea>Some default text; HUlk is very cool innit</textarea>
<br/>

<input type="text" id="hulk" />
​

图片



文章来源: Get the highlighted text