gpt4 book ai didi

javascript - 获取文本输入中选定文本的索引

转载 作者:可可西里 更新时间:2023-11-01 13:13:46 24 4
gpt4 key购买 nike

如果您有一个 HTML input 元素,您如何检测该 input 中所选文本的开始和结束位置的索引?我尝试使用 window.getSelection 但它似乎无法正常工作。我需要在 keydown 事件中解决这个问题。

最佳答案

您可以使用 selectionStartselectionEnd 属性来获取相应值的索引。

var start = document.getElementById("myArea").selectionStart;  
var end = document.getElementById("myArea").selectionEnd;

console.log(start);
console.log(end);

关于javascript - 获取文本输入中选定文本的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14596582/

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