解决用户管理页面滚动返回顶部条失效

This commit is contained in:
Ricky
2020-10-12 11:47:15 +08:00
parent 406889ae07
commit 7d8b7ba2d5
2 changed files with 10 additions and 2 deletions

View File

@ -191,8 +191,8 @@ $(function() {
'use strict';
$.fn.toTop = function(opt) {
var elem = this;
var win = $(window);
var doc = $('html, body');
var win = (opt && opt.hasOwnProperty('win')) ? opt.win : $(window);
var doc = (opt && opt.hasOwnProperty('doc')) ? opt.doc : $('html, body');
var options = $.extend({
autohide: true,
offset: 50,