JavaScript:在Chrome中使用textarea.setSelectionRange之后滚动到选择

前端之家收集整理的这篇文章主要介绍了JavaScript:在Chrome中使用textarea.setSelectionRange之后滚动到选择前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
javascript函数使用.setSelectionRange()在textarea中选择某个单词.在Firefox中,文本区域自动向下滚动以显示所选文本.在Chrome(v14)中,没有.有没有办法让Chrome滚动文本区域到新选择的文本?欢迎jQuery解决方

@R_403_323@

这是一个简单有效的解决方案,纯js:
//first of all,you ignore any bad english,as i'm french and had a funny evening
//get the textarea
var textArea = document.getElementById('myTextArea');

//define your selection
var selectionStart = 50;
var selectionEnd = 60;
textArea.setSelectionRange( selectionStart,selectionEnd);

// now lets do some math
// we need the number of chars in a row
var charsPerRow = textArea.cols;

// we need to know at which row our selection starts
var selectionRow = (selectionStart - (selectionStart % charsPerRow)) / charsPerRow;

// we need to scroll to this row but scrolls are in pixels,// so we need to know a row's height,in pixels
var lineHeight = textArea.clientHeight / textArea.rows;

// scroll !!
textArea.scrollTop = lineHeight * selectionRow;

把它放在一个函数中,用它扩展javascript的Element对象的原型,你很好.

随时问你是否需要进一步的帮助.

原文链接:https://www.f2er.com/js/154919.html

猜你在找的JavaScript相关文章