gpt4 book ai didi

jQuery:无需浏览器特定代码即可获取输入中文本的光标位置?

转载 作者:行者123 更新时间:2023-12-03 21:32:11 25 4
gpt4 key购买 nike

jQuery 有没有办法在不执行丑陋的浏览器特定代码的情况下获取文本输入中的当前光标位置?

如:

<input id="myTextInput" type="text" value="some text" >

光标在“some text”的“x”后面,我可以得到“8”吗?

最佳答案

如果没有一些浏览器特定的代码,您就无法做到这一点,因为它们实现的文本选择范围略有不同。然而,有一些插件可以将其抽象化。正是为了满足您的需求,jQuery Caret (jCaret) plugin .

为了让您的代码获得位置,您可以执行以下操作:

$("#myTextInput").bind("keydown keypress mousemove", function() {
alert("Current position: " + $(this).caret().start);
});

You can test it here .

关于jQuery:无需浏览器特定代码即可获取输入中文本的光标位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4085312/

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