index.php代码  
[html] view plaincopy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml">  
    <head>  
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
        <title>滚屏加载--无刷新动态加载数据技术的应用-www.corange.cn</title>  
        <style type="text/css">  
            #container{margin:10px auto;width: 660px; border: 1px solid #;}   
            .single_item{padding: 20px; border-bottom: 1px dotted #d3d3d3;}  
            .author{position: absolute; left: 0px; font-weight:bold; color:#39f}  
            .date{position: absolute; right: 0px; color:#}  
            .content{line-height:20px; word-break: break-all;}  
            .element_head{width: %; position: relative; height: 20px;}  
            .nodata{display:none; height:32px; line-height:32px; text-align:center; color:#; font-size:14px}  
        </style>  
        <script type="text/javascript" src="../jquery.js"></script>  
        <script type="text/javascript">  
            $(function() {  
                var winH = $(window).height(); //页面可视区域高度  
                var i = ;  
                $(window).scroll(function() {  
                    var pageH = $(document.body).height();  
                    var scrollT = $(window).scrollTop(); //滚动条top  
                    var aa = (pageH - winH - scrollT) / winH;  
                    if (aa < 0.02) {  
                        $.getJSON("result.php", {page: i}, function(json) {  
                            if (json) {  
                                var str = "";  
                                $.each(json, function(index, array) {  
                                    var str = "<div class=\"single_item\"><div class=\"element_head\">";  
                                    var str = str + "<div class=\"date\">" + array['date'] + "</div>";  
                                    var str = str + "<div class=\"author\">" + array['author'] + "</div>";  
                                    var str = str + "</div><div class=\"content\">" + array['content'] + "</div></div>";  
                                    $("#container").append(str);  
                                });  
                                i++;  
                            } else {  
                                $(".nodata").show().html("别滚动了,已经到底了。。。");  
                                return false;  
                            }  
                        });  
                    }  
                });  
            });  
        </script>  
    </head>  
    <?php   
    require_once('connect.php');   
    $user = array('demo1','demo2','demo3','demo3','demo4');   
    ?>   
    <div id="container">   
        <?php   
        $query=mysql_query("select * from comments order by id desc limit 0,15");   
        while ($row=mysql_fetch_array($query)) {   
        ?>   
        <div class="single_item">   
            <div class="element_head">   
                <div class="date"><?php echo date('m-d H:i',$row['addtime']);?></div>   
                <div class="author"><?php echo $user[$row['userid']];?></div>   
            </div>   
            <div class="content"><?php echo $row['content'];?></div>   
        </div>   
        <?php } ?>   
    </div>   
    <div class="nodata"></div>    result.php代码 [php] view plaincopy在CODE上查看代码片派生到我的代码片
<?php  
require_once('connect.php'); //连接数据库   
   
$user = array('demo1','demo2','demo3','demo3','demo4');   
$page = intval($_GET['page']);  //获取请求的页数   
$start = $page*;   
$query=mysql_query("select * from comments order by id desc limit $start,15");   
while ($row=mysql_fetch_array($query)) {   
    $arr[] = array(   
        'content'=>$row['content'],   
        'author'=>$user[$row['userid']],   
        'date'=>date('m-d H:i',$row['addtime'])   
    );   
}   
echo json_encode($arr);  //转换为json数据输出   
?>   connect.php代码 [php] view plaincopy在CODE上查看代码片派生到我的代码片
<?php  
$host="localhost";  
$db_user="root";  
$db_pass="";  
$db_name="demo";  
$timezone="Asia/Shanghai";  
  
$link=mysql_connect($host,$db_user,$db_pass);  
mysql_select_db($db_name,$link);  
mysql_query("SET names UTF8");  
?>  

Jquery鼠标滚动到页面底部自动加载更多内容,使用分页的更多相关文章

  1. Jquery+php鼠标滚动到页面底部自动加载更多内容,使用分页

    1.index.php <style type="text/css"> #container{margin:10px auto;width: 660px; border ...

  2. 当滚动条滚动到页面底部自动加载增加内容的js代码

    这篇文章主要介绍了如何使用javscript实现滚动条滚动到页面底部自动加载增加页面内容,需要的朋友可以参考下..1,注册页面滚动事件,window.onscroll = function(){ }; ...

  3. vue 实现滚动到页面底部开始加载更多

    直接上代码: <template> <div class="newsList"> <div v-for="(items, index) in ...

  4. jQuery+ajax实现滚动到页面底部自动加载图文列表效果

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  5. UWP-ListView到底部自动加载更多数据

    原文:UWP-ListView到底部自动加载更多数据 ListView绑定的数据当需要“更多”时自动加载 ListView划到底部后,绑定的ObservableCollection列表数据需要加载的更 ...

  6. vue使用H5实现滚动到页面底部时加载数据

    使用原生vue实现瀑布流,发现无法实现小程序那种滚动到地步触发加载效果,只能自己研究了 实现效果: 实现代码: 首先添加监听滚动事件 mounted() { window.addEventListen ...

  7. 实现Android ListView 自动加载更多内容

    研究了几个小时终于实现了Android ListView 自动加载的效果. 说说我是怎样实现的.分享给大家. 1.给ListView增加一个FooterView,调用addFooterView(foo ...

  8. Android ListView滑动底部自动加载更多

    直接上代码: // lv = (ListView) findViewById(R.id.lv); // // for(int i = 0;i < 50;i++){ // ls.add(" ...

  9. jquery 页面滚动到底部自动加载插件集合

    很多社交网站都使用无限滚动的翻页技术来提高用户体验,当你页面滑到列表底部时候无需点击就自动加载更多的内容.下面为你推荐 10 个 jQuery 的无限滚动的插件: 1. jQuery ScrollPa ...

随机推荐

  1. Python socket编程之六:多窗口的应用

    import struct import sqlalchemy import pandas import matplotlib.pyplot as Plot from matplotlib.finan ...

  2. 基于REST架构的Web Service设计

    来自: http://www.williamlong.info/archives/1728.html 先前我曾经介绍过利用Apache Axis实现基于SOAP的Web Service实现技术和相关代 ...

  3. c/s架构nginx+php-fpm通信原理

        FastCGI是一个运用于Http Server和动态脚本语言间通信的接口,多数流行的Http Server都支持FastCGI,包括Apache.Nginx和lighttpd等.同时,Fas ...

  4. Android SDK Manager和AVD Manager使用

    Android SDK Manager和AVD Manager使用(win7_64bit下测试) 目录 1.概述 2.本文用到的工具 3.安卓开发基础工具包下载 4.Android SDK Manag ...

  5. 通过开源程序同时解决DNS劫持和DNS污染的问题

    我们知道,某些网络运营商为了某些目的,对DNS进行了某些操作,导致使用ISP的正常上网设置无法通过域名取得正确的IP地址.常用的手段有:DNS劫持和DNS污染.关于DNS劫持和DNS污染的区别,请查找 ...

  6. apache 配置多个虚拟主机

    修改文件:httd.conf 文件地址:D:\wamp\bin\apache\Apache2.2.21\conf #配置虚拟主机<VirtualHost 127.0.0.3:80>Serv ...

  7. Gulp, 比Grunt更好用的前端构建工具

    Gulp, 比Grunt更好用的前端构建工具 本文主要从两个方面介绍Gulp:一,Gulp相对于Grunt的优势: 二,Gulp的安装和使用流程 Gulp相对于Grunt的优势 gulp.js 的作者 ...

  8. 淘宝(阿里百川)手机客户端开发日记第五篇 SharedPreferences使用详解

    我们知道,Android中数据存储技术由于如下几种 1 使用SharedPreferences存储数据 2 文件存储数据 3 SQLite数据库存储数据 4 使用ContentProvider存储数据 ...

  9. 转:github使用教程(重装系统后遇到问题该文章帮我解决了)

    github简单使用教程 时间:2012 年 5 月 29 日 6 条评论 分类:学习笔记 , 网络 , 软件 目录 1.注册账户以及创建仓库 2.安装客户端msysgit 3.配置Git 4.提交. ...

  10. ZeroMQ(java)之Router与Dealer运行原理

    在开始这部分的内容之前,先来看看ZeroMQ中HWM概念---High-Water Marks 当系统的数据量很大,而且发送频率很高的情况下,内存就很重要了,如果处理不好会出现很多问题,例如如下场景: ...