gpt4 book ai didi

javascript - 如何在鼠标单击单词时从文本区域的字符串中选择单词

转载 作者:行者123 更新时间:2023-11-29 18:03:36 24 4
gpt4 key购买 nike

我在 html textarea 中有一个字符串。使用 jquery 可以通过单击单词从字符串中选择一个单词。

最佳答案

这不是你想要的,但我希望它能以某种方式帮助你......我从网上得到了这个。

  $(document).ready(function() {
$('body').on('click', 'textarea', function() {
textarea_Click(this);
});
});

function textarea_Click(e) {
var caret = getCaretPosition(e);
var text = e.value;
var begin = caret - 1;
while (begin >= 0) {
if (text.charAt(begin) == '}') return;
else if (text.charAt(begin) == '{') break;
else begin--;
}

if (begin >= 0) {
var end = caret;
while (end < text.length) {
if (text.charAt(end) == '}') break;
else end++;
}

if (end < text.length)
setSelection(begin, end, e);
}
}

function getCaretPosition(textarea) {
if (textarea.selectionStart) {
return textarea.selectionStart;
} else {
// TODO: Handle IE ugliness on your own :)
return 0;
}
}

function setSelection(begin, end, textarea) {
if ("selectionStart" in textarea) {
textarea.selectionStart = begin;
textarea.selectionEnd = end + 1;
} else if (document.selection) {
// TODO: Handle IE ugliness on your own :)
return;
}
}
textarea {
width: 100%;
height: 100px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<textarea>Our doubts are traitors, {and} make us lose the {good} we oft might win, by {fearing} to attempt.</textarea>

关于javascript - 如何在鼠标单击单词时从文本区域的字符串中选择单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33097732/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com