知道在javascript中使用鼠标选择的文本

时间:2012-03-18 08:10:24

标签: javascript select mouse bold italic

我的应用程序我希望使用鼠标粗体选择文本s​​eleected ..如何使用javascript执行此操作? 另外如何使用javascript知道光标位置...例如,我可能需要在放置光标的文本之前使用我的函数插入文本

2 个答案:

答案 0 :(得分:3)

您可以在textarea中执行此操作:

<html>
<head>

<title>onselect test</title>

<script type="text/javascript">

window.onselect = selectText;

function selectText(e)
{
    start = e.target.selectionStart;
    end = e.target.selectionEnd;
    alert(e.target.value.substring(start, end));
}
</script>
</head>

<body>
<textarea>
Highlight some of this text
with the mouse pointer
to fire the onselect event.
</textarea>
</body>
</html>

答案 1 :(得分:1)

你的意思是这样的:


function getSelText()
{
    var txt = '';
     if (window.getSelection)
    {
        txt = window.getSelection();
    }
    else if (document.getSelection)
    {
        txt = document.getSelection();
    }
    else if (document.selection)
    {
        txt = document.selection.createRange().text;
    }
    else  { return; }
}
//txt is the selected text