直接上代码:
onresize 事件会在窗口或框架被调整大小时发生。
var h = document.body.scrollHeight;
window.onresize = function(){
if (document.body.scrollHeight < h) {
$(".service-phone").hide(); // 需要处理的fixed定位元素 我这里是直接隐藏了
}else{
$(".service-phone").show();
}
};
网友评论