jquery ajax分页插件-简单好用的插件

jquery ajax分页插件-简单好用的插件

对1.0版进行了重构,去掉了一些花销的功能,优化了页面样式,现有功能:

1)、一次性把数据加载到页面内存,在页面进行分页。

2)、使用jquery的ajax每次从服务器取数据分页。

3)、支持自定义分页条样式,插件默认实现两种样式可供选择。

 

Html代码  
  1. <table id="table2" >  
  2.     <thead>  
  3.         <tr><th width="200px">网站名称</th>  
  4.                       <th width="100px">网址</th>  
  5.                       <th width="100px">知名度</th>  
  6.                      <th width="120px">访问量</th>  
  7.                 </tr>  
  8.     </thead>  
  9.     <tbody></tbody>  
  10. </table>  
  11.                    
  12. $("#table2").bigPage({ajaxData:{url:"ajax.php"}});   
<table id="table2" >
	<thead>
		<tr><th width="200px">网站名称</th>
                      <th width="100px">网址</th>
                      <th width="100px">tb知名度</th>
                     <th width="120px">访问量</th>
                </tr>
	</thead>
	<tbody></tbody>
</table>
				
$("#table2").bigPage({ajaxData:{url:"ajax.php"}}); 
 

 

更多的例子及代码下载地址:

 

http://bigui4.sinaapp.com/index.html

你可能感兴趣的:(jquery ajax分页插件-简单好用的插件)