小白学习---JS

来源:互联网 发布:mysql 5.7.17.msi下载 编辑:程序博客网 时间:2024/05/14 12:29

1.关于返回上一页的两个js

javascript:history.back(-1)在返回山一页时可以保留上一页的数据和javascript:history.go(-1)返回上一页时无法保留上一页的数据

2.js页面跳转:

location.href="链接";

3.在手机界面,向下滑动数据加载的代码块:

<strong>$(window).scroll(function () {        var scrollTop = $(this).scrollTop();        var scrollHeight = $(document).height();        var windowHeight = $(this).height();        if (scrollTop + windowHeight == scrollHeight) {      //此处是滚动条到底部时候触发的事件,在这里写要加载的数据,或者是拉动滚动条的操作//var page = Number($("#redgiftNextPage").attr('currentpage')) + 1;//redgiftList(page);//$("#redgiftNextPage").attr('currentpage', page + 1);        }    });</strong>
别忘了引用jquery类库

判断滚动条到底部,需要用到DOM的三个属性值,即scrollTop、clientHeight、scrollHeight。

scrollTop为滚动条在Y轴上的滚动距离。

clientHeight为内容可视区域的高度。

scrollHeight为内容可视区域的高度加上溢出(滚动)的距离。

从这个三个属性的介绍就可以看出来,滚动条到底部的条件即为scrollTop + clientHeight == scrollHeight。(兼容不同的浏览器)。


0 0
原创粉丝点击