我的应用程序我想使用鼠标粗体选择文本。如何使用 javascript 执行此操作?另外如何使用javascript知道光标位置...例如,我可能需要在放置光标的文本之前使用我的函数插入文本
问问题
5338 次
2 回答
5
您可以在 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>
于 2012-03-18T15:34:30.723 回答
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
于 2012-03-18T08:16:12.070 回答