mCustomScrollbar报错Cannot read property ‘autoUpdate‘ of undefined

在这里插入图片描述
在这里插入图片描述

	//报错的代码
    //$('#orgTree').mCustomScrollbar('destroy');
	//解决方法
	//修改后的代码
    try{
    
    
        !!$("#orgTree").data("mCS") && $("#orgTree").mCustomScrollbar("destroy"); //Destroy
    }catch (e){
    
    
        $("#orgTree").data("mCS",''); //手动销毁
        //console.log(e);
    }

猜你喜欢

转载自blog.csdn.net/weixin_42580704/article/details/109489461