//禁止滑动
var top = $(window).scrollTop();
$("body").css({
"position": "fixed",
"width": "100%",
"top": top * -1
});
//恢复滑动
$("body").css({
"position": "static"
});
发表评论 取消回复