相关关键词
关于我们
最新文章
PHP中使用jQuery+Ajax实现分页查询多功能操作(示例讲解)
发布日期:2017-09-17 00:00:00
95
1.首先做主页面Ajax_pag.php
代码如下:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Ajax做分页</title> <script src="bootstrap/js/jquery-1.11.2.min.js"></script> <script src="Ajax_pag.js"></script> <script src="bootstrap/js/bootstrap.min.js"></script> <link href="bootstrap/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet" type="text/css"/> </head> <style> .header{ margin-top: 20px; } </style> <body> <div > 关键字: <input id="key" type="text" name="gjz"/> <input type="button" value="查询" id="ck" /> </div> <table class="table table-bordered header"> <thead> <tr> <th>地区代号</th> <th>地区名称</th> <th>父级代号</th> </tr> </thead> <tbody id="list"> </tbody> </table> <div > <ul class="pagination" id="fenye"> </ul> </div> </body> </html>