zoukankan      html  css  js  c++  java
  • 纯JS实现动态时间

    <!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>jQuery Pagination分页插件ajax demo</title>
    <link rel="stylesheet" href="lib/pagination.css" />
    <style type="text/css">
    body{font-size:84%; color:#333333; line-height:1.4;}
    a{color:#34538b;}
    #Searchresult{300px; height:100px; padding:20px; background:#f0f3f9;}
    </style>
    <script type="text/javascript" src="lib/jquery.min.js"></script>
    <script type="text/javascript" src="lib/jquery.pagination.js"></script>
    <script type="text/javascript">
    $(function(){
    //此demo通过Ajax加载分页元素
    var initPagination = function() {
    var num_entries = $("#hiddenresult div.result").length;
    // 创建分页
    $("#Pagination").pagination(num_entries, {
    num_edge_entries: 1, //边缘页数
    num_display_entries: 4, //主体页数
    callback: pageselectCallback,
    items_per_page: 1, //每页显示1项
    prev_text: "前一页",
    next_text: "后一页"
    });
    };

    function pageselectCallback(page_index, jq){
    var new_content = $("#hiddenresult div.result:eq("+page_index+")").clone();
    $("#Searchresult").empty().append(new_content); //装载对应分页的内容
    return false;
    }
    //ajax加载
    $("#hiddenresult").load("load.html", null, initPagination);
    });
    </script>
    </head>

    <body>
    <h1>jQuery Pagination分页插件ajax demo</h1>
    <div id="Pagination" class="pagination"><!-- 这里显示分页 --></div>
    <div id="Searchresult">分页初始化完成后这里的内容会被替换。</div>
    <div id="hiddenresult" style="display:none;">
    <!-- 列表元素 -->
    </div>
    <p>Copyright &copy; <a href="http://www.zhangxinxu.com/wordpress/">张鑫旭-鑫空间-鑫生活</a></p>
    </body>
    </html>

  • 相关阅读:
    Java中List集合去除重复数据的方法
    ActiveMQ消息中间件Producer和Consumer
    JMS Activemq实战例子demo
    利用正则表达式判断输入内容是否全中文
    纯js的右下角弹窗
    java开源项目
    linux部署jdk-tomcat
    你的主机中的软件中止了一个已建立的连接。
    Centos编译安装 LAMP (apache-2.4.7 + mysql-5.5.35 + php 5.5.8)+ Redis
    在LAMP的生产环境内添加PHP的cURL扩展模块
  • 原文地址:https://www.cnblogs.com/AmilyWilly/p/6488996.html
Copyright © 2011-2022 走看看