摘要: // 页面滚动到顶部// 方法一document.body.scrollTop=document.documentElement.scrollTop=0// 方法二document.body.scrollIntoView()// scrollIntoView 是元素也有的方法, 可以用在页面元素上, 阅读全文
posted @ 2020-07-20 15:09 番茄匠Amy 阅读(931) 评论(0) 推荐(0) 编辑
摘要: 出处:https://www.cnblogs.com/ooo0/p/6123465.html 一、js 页面加载初始化方法 // 1.在body里面写初始化方法.<body onload='init()'></body><script type="text/javascript"> function 阅读全文
posted @ 2020-07-20 10:53 番茄匠Amy 阅读(748) 评论(0) 推荐(0) 编辑
摘要: 出处:http://www.fly63.com/article/detial/5595 方法一:IOS允许滚动会无效 function scrControl(t){ if(t == 0){ //禁止滚动 document.body.addEventListener('touchmove', func 阅读全文
posted @ 2020-07-20 10:50 番茄匠Amy 阅读(1173) 评论(0) 推荐(0) 编辑