使用javascript将文本区域滚动到特定区域
我有一个带有滚动条的文本区域。我需要使用 javascript 更改光标在文本区域中的位置,并且滚动文本区域以便光标可见。我正在使用 elem.selectionStart 和 elem.selectionEnd 来移动光标,但是当我移动时当它到达不可见的点时,文本区域不会滚动,因此光标可见。
更多细节(可能太长;太长) 我正在创建一个幻灯片编辑器,并在内容编辑器(带滚动条的文本区域)旁边预览完整的幻灯片。当您在文本区域中移动光标时,幻灯片放映会更改幻灯片,因此您始终可以查看正在编辑的幻灯片。我需要获取它,以便更改幻灯片(使用按钮)移动光标,以便您可以看到生成该幻灯片的代码。
// slideBoundries has numbers which are the indexes where the slides begin/end
// eg: [0, 81, 140, 250] for slideshow with 3 slides
if (doc.editor.selectionEnd > slideBoundries[curSlide] &&
doc.editor.selectionEnd < slideBoundries[curSlide + 1]) {
return;
}
doc.editor.selectionStart = slideBoundries[curSlide];
doc.editor.selectionEnd = slideBoundries[curSlide];
我可以计算文件中的换行符数量,这样我就知道向下滚动多远,但是有很多行很长并且占用多行。我使用的是等宽字体,因此计算换行符和占用多行的行数,但我想要一种更简单的方法。是否有一个函数我可以调用来模拟用户移动光标时发生的情况,因为当用户单击时文本区域总是滚动到该点...
编辑: 由于大众的需求,这里有一个小提琴: http://jsfiddle.net/tShQ2/
我的方法'我将用来解决此问题的是创建一个具有相同宽度但自动调整高度的幻像文本区域。它必须是可见的,否则它将不起作用,因此请将其设置为绝对位置并将其移出屏幕。然后将文本放在其中所需的光标位置之前。然后将真实文本区域滚动到虚拟文本区域的高度。
I have a textarea with a scrollbar. I need to change the position of your cursor in the textarea with javascript AND scroll the textarea so your cursor is visible. I am using elem.selectionStart and elem.selectionEnd to move your cursor, but when I move it to a point that is not visible, the textarea does not scroll so the cursor is visible.
More details (probably TL;DR)
I am creating a slideshow editor and have a preview of the complete slideshow next to an editor (textarea with scrollbar) for the content. As you move your cursor through the textarea, the slideshow changes slides so you are always viewing the slide that you are editing. I need to get it so changing the slide (using buttons) moves your cursor so you can see the code that generated that slide.
// slideBoundries has numbers which are the indexes where the slides begin/end
// eg: [0, 81, 140, 250] for slideshow with 3 slides
if (doc.editor.selectionEnd > slideBoundries[curSlide] &&
doc.editor.selectionEnd < slideBoundries[curSlide + 1]) {
return;
}
doc.editor.selectionStart = slideBoundries[curSlide];
doc.editor.selectionEnd = slideBoundries[curSlide];
I could just count the number of newlines in the file so I know how far to scroll down, but there are many lines that are long and take up multiple lines. I am using a monospaced font so counting the number of newlines and lines that take up multiple lines, but I would like an easier way. Is there a function I could call to mimic what happens when the user moves their cursor as the textarea always scrolls to that point when the user clicks...
EDIT:
Due to popular demand, here is a fiddle: http://jsfiddle.net/tShQ2/
The method I'm going to use to fix this issue is create a phantom textarea that has same width, but autosizes to height. It has to be visible or else it won't work, so make it abs position and move it off screen. Then put the text before the desired cursor position in it. Then scroll the real textarea to the height of the phantom textarea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的解决方案是一个很好的解决方案,但让我建议一些事情以使其更容易。
使用幻像 div,而不是文本区域,因为 div 会自动调整大小。只需确保样式匹配即可。
要隐藏您的幻像 div,请使用:
可见性:隐藏;
位置:绝对;
这与
display: none
具有相同的效果,同时允许 div 有高度。还有一件事。对于 IE,您可以从选择范围创建一个范围并显式滚动到该范围:
Your solution is a good one, but let me suggest a couple of things to make it easier.
Use a phantom div, rather than a textarea, since a div will autosize automatically. Just make sure to match the styles.
To hide your phantom div use:
visibility: hidden;
position: absolute;
This has the same effect as
display: none
, while allowing the div to have a height.One more thing. For IE, you can create a range from the selection and scroll to it explicitly: