请问,UEditor数据加载后,如何设置滚动条显示到顶部,而不是显示在底部

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问,UEditor数据加载后,如何设置滚动条显示到顶部,而不是显示在底部相关的知识,希望对你有一定的参考价值。

参考技术A //ue 是我实例化的名字
$(ue.window).scrollTop(ue.window.scrollMaxY);

js : 怎么设置网页滚动条超过800px后,显示“返回顶部”的按钮?

我这里有个 返回顶部的按钮,设置当滚动条 超过800px的时候,才显示,不然就隐藏。
我的 按钮 是class="dingbu2" ;

.dingbu2display:none;

引入 jquery.min.js 文件

$(window).on('scroll',function()
    var st = $(document).scrollTop();
    if( st>0 )
        $('.dingbu2').fadeIn(300);
    else
        $('.dingbu2').fadeOut(300);
    
);
$(".dingbu2").click(function()
    if(scroll=="off")
        return;
    
    $("html,body").animate(scrollTop: 0, 600);
);

参考技术A var dingbu2 = $('.dingbu2');
if($(window).scrollTop()>=800)
dingbu2.css('display','block'):

这样就可以了。追问

嗯,谢谢,你的js很简短,不过你忘了:
当高度 不够的时候,设置div 隐藏。
还是谢谢你!︿( ̄︶ ̄)︿

参考技术B #top position: fixed; width: 40px; height: 40px; right: 10px; top: 85%; background-image: url(../images/top.png); background-size: 80px 60px; background-position: 50% 10%; background-repeat: no-repeat; text-align: center; line-height: 60px; cursor:pointer

<div id="top">TOP</div>

<script type="text/javascript" src=" jquery.min.js"></script>

$(function()
$("#top").hide();
$(window).scroll(function()
if ($(this).scrollTop() > 1)
$("#top").fadeIn();
else
$("#top").fadeOut();

);
$("#top").click(function()
$("html,body").animate(
scrollTop: 0
, 1000);
return false;
);
)

以上是关于请问,UEditor数据加载后,如何设置滚动条显示到顶部,而不是显示在底部的主要内容,如果未能解决你的问题,请参考以下文章

网页滚动条滚动到一定位置后,加载数据,而且数据是由动态效果的怎么做?

delphi中加个下拉滚动条,如果。现在是第九第十下面的显示不出来。请问如何加滚动条?

请问在Winform中如何实现滚动条随着数据的载入动态滚动?

请问bootstrap框架下,如何使得中文超过表格显示大小后出现水平滑动条,而不是把一行的文字变成一列?

请问:C# listView控件如何判断滚动条的位置?判断滚动条在控件的最下面?

vue聊天功能之滚动条自动定位到底部