如何防止textarea在值改变时滚动到顶部?
考虑以下示例:(此处为实时演示)
HTML:
<textarea></textarea>
<div id="button">Click Here</div>
CSS:
textarea {
height: 80px;
width: 150px;
background-color: #bbb;
resize: none;
border: none;
}
#button {
width: 150px;
background-color: #333;
color: #eee;
text-align: center;
}
JS:
$(function() {
var textarea = $("textarea");
textarea.val("Hello\nStack\nOverflow!\nThere\nAre\nLots\nOf\nGreat\nPeople\nHere");
$("#button").click(function() {
textarea.val(textarea.val() + "!");
});
textarea.scrollTop(9999).focus(); // Arbitrary big enough number to scroll to the bottom
});
当 单击#button
,textarea
值发生变化,并且由于某种原因滚动条转到顶部(我在Firefox中检查了这一点,不确定其他浏览器是否如此)。
为什么会发生这种情况?
我该如何解决这个问题?
我发现 这里一个可能的解决方案,但我想知道是否还有其他解决方案。
Consider the following example: (Live demo here)
HTML:
<textarea></textarea>
<div id="button">Click Here</div>
CSS:
textarea {
height: 80px;
width: 150px;
background-color: #bbb;
resize: none;
border: none;
}
#button {
width: 150px;
background-color: #333;
color: #eee;
text-align: center;
}
JS:
$(function() {
var textarea = $("textarea");
textarea.val("Hello\nStack\nOverflow!\nThere\nAre\nLots\nOf\nGreat\nPeople\nHere");
$("#button").click(function() {
textarea.val(textarea.val() + "!");
});
textarea.scrollTop(9999).focus(); // Arbitrary big enough number to scroll to the bottom
});
When the #button
is clicked, textarea
value changes, and for some reason the scroll bar goes to the top (I checked this in Firefox, not sure about other browsers).
Why this is happening ?
How could I fix that ?
I found here one possible solution, but I wonder if there are other solutions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以保存scrollTop偏移量,设置值,然后将scrollTop重置为旧偏移量:
在此处尝试:http: //jsfiddle.net/QGJeE/7/
You can save the scrollTop offset, set the value, and reset the scrollTop to the old offset:
Try it here: http://jsfiddle.net/QGJeE/7/
另一个解决方案(更难暗示,因为没有唯一的跨浏览器方式):
不更改文本区域的值,而是创建文本区域内容的文本范围并修改范围文本。
Another solution(harder to imply as there is no unique cross-browser-way):
Instead of changing the value of the textarea create a textRange of the textarea's content and modify the ranges text.