Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 TextArea(或其他文本组件)中移动文本光标?如何?有这样做的功能吗?
假设,我们有一个 TextArea 和 2 个按钮。每按一次第一个按钮,文本光标就会移动到第二个字母和第三个字母之间的位置。如果只有两个字母,文本光标将转到字符串的末尾。每次我们按下第二个按钮时,文本光标将转到字符串的开头。
有人可以帮助我吗?谢谢之前:D
是否可以在 TextArea 中移动文本光标
caret它在Java中称为a 。查看方法名称中带有插入符号的方法的 API。例如:
caret
textArea.setCaretPosition( textArea.getCaretPosition() + 1 );