我正在使用CodeMirror构建实时预览编辑器。我需要确定CodeMirror编辑器是否滚动到最底部,以便我也可以将预览滚动到底部。
我该如何判断?
答案 0 :(得分:1)
您需要codeMirror中的scroller元素,然后在scroll事件上绑定一个函数。
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
mode: "text/html"
});
var scrollElement = editor.getScrollerElement();
console.log(scrollElement )
$(scrollElement).bind('scroll', function(e) {
var elem = $(e.currentTarget);
if (elem[0].scrollHeight - elem.scrollTop() == elem.outerHeight()) {
console.log("bottom");
}
});
答案 1 :(得分:0)
不得不对aljordan82的解决方案做一些小的调整:
var editor = CodeMirror.fromTextArea(document.getElementById('post'), {
'mode': 'gfm',
'lineNumbers': true,
'theme': 'default',
'lineWrapping': true,
});
var $preview = $('#preview-div');
var $scroller = $(editor.getScrollerElement());
$.fn.scrollHeight = function() {
return this[0].scrollHeight;
};
var atBottom = $scroller.scrollHeight() - $scroller.scrollTop() - $scroller.outerHeight() <= 0
&& $preview.scrollHeight() - $preview.scrollTop() - $preview.outerHeight() <= 0;
$preview.html(html);
if (atBottom) {
$preview.scrollTop($preview.scrollHeight());
}
我的预览div上的数字并不完全相同,所以我做了<= 0
。 (2px关闭,可能是由于边界?)