jquery页面分页

发布于 2024-09-13 10:32:11 字数 1685 浏览 3 评论 0原文

我尝试过使用 jquery 来进行页面分页。该示例显示以下内容:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>
<script type="text/javascript" src="quickpager.jquery.js"></script>
<script type="text/javascript">
/* <![CDATA[ */

$(document).ready(function() {


    $("ul.paging").quickPager();


    $("ul.paging2").quickPager({pagerLocation:"both"});
});

/* ]]> */
</script>
<body>
    <h1>SimplePager demo page</h1>
    <p><a href="http://www.geckonewmedia.com/blog/2009/8/14/jquery-youtube-playlist-plugin---youtubeplaylist">back to blog post</a></p>
            <code>
            <pre>
    $("ul.paging").quickPager();
            </pre>
        </code>


<ul class="paging">
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    <li>5</li>
    <li>6</li>
    <li>7</li>
    <li>8</li>
    <li>9</li>
    <li>10</li>
    <li>11</li>
    <li>12</li>
    <li>13</li>
    <li>14</li>
    <li>15</li>
</ul>

它正在显示页面中的每 10 条记录 :# refrence:http://www.geckonewmedia.com/blog/2009/8/20/simplepager---jquery-paging-plugin- -更新

我使用了相同的方法,但尝试从数据库检索值而不是硬编码,但分页不存在,仅检索了20条记录而没有分页。我可以做这种类型的代码吗?

<% 
while(rs.next()){

%>  
<ul class="paging">
    <li><%=rs.getString("customer_name")%></li>
</ul>

<%

}

rs.close();

%> 

I have tried a jquery to do the page pagination. The example is showing the following:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js"></script>
<script type="text/javascript" src="quickpager.jquery.js"></script>
<script type="text/javascript">
/* <![CDATA[ */

$(document).ready(function() {


    $("ul.paging").quickPager();


    $("ul.paging2").quickPager({pagerLocation:"both"});
});

/* ]]> */
</script>
<body>
    <h1>SimplePager demo page</h1>
    <p><a href="http://www.geckonewmedia.com/blog/2009/8/14/jquery-youtube-playlist-plugin---youtubeplaylist">back to blog post</a></p>
            <code>
            <pre>
    $("ul.paging").quickPager();
            </pre>
        </code>


<ul class="paging">
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    <li>5</li>
    <li>6</li>
    <li>7</li>
    <li>8</li>
    <li>9</li>
    <li>10</li>
    <li>11</li>
    <li>12</li>
    <li>13</li>
    <li>14</li>
    <li>15</li>
</ul>

It is diaplaying each 10records in a page :# refrence:http://www.geckonewmedia.com/blog/2009/8/20/simplepager---jquery-paging-plugin--updated

I used the same, but tried to retrieve the values from the db instead of hard coding, but the pagination is not there, only the 20 records retrieved without the pagination. Can I do this type of code?

<% 
while(rs.next()){

%>  
<ul class="paging">
    <li><%=rs.getString("customer_name")%></li>
</ul>

<%

}

rs.close();

%> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半衬遮猫 2024-09-20 10:32:11

应该是这样的......

<ul class="paging">
<% 
    while(rs.next()){    
%>
        <li><%=rs.getString("customer_name")%></li>
<%    
    }    
    rs.close();    
%>    
</ul>

it should be like this....

<ul class="paging">
<% 
    while(rs.next()){    
%>
        <li><%=rs.getString("customer_name")%></li>
<%    
    }    
    rs.close();    
%>    
</ul>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文