PHP+AJAX无刷新翻页,求代码。
2013-06-02
展开全部
给你个使用jquery+php的简单的分页案例! 自己修改 望采纳!
index.php
<?php
header("Content-Type:text/html;charset=utf-8");
?>
<html>
<head>
<title>test</title>
<style>
A{text-decoration:none;}
A:link {COLOR:#33CCFF;}
A:active {COLOR:#FF6666;}
A:visited {COLOR:#33CCFF;}
A:hover {COLOR:#FF6699; TEXT-DECORATION: underline;position:relative;left:1px;top:1px}
</style>
<script src="jquery.min.js"></script>
<script language="javascript">
$(document).ready(function(){
changepage(1);
});
function changepage(page){
$.post("sql.php",{page:page},function(data){
$("#test").html(data);
});
}
</script>
</head>
<body>
<ul id="test"></ul>
</body>
</html>
sql.php
<?php
mysql_connect("localhost","root","");
mysql_select_db("test");
mysql_query("set names utf8");
if(isset($_POST["page"])){
@$page = max(1, intval($_POST["page"]));
$pagesize=10;
$startindex=($page-1)*$pagesize;
$sql="SELECT * FROM news ORDER BY id LIMIT $startindex,$pagesize";
$rec=mysql_query($sql);
$str="";
while($row=mysql_fetch_array($rec)){
$str.="<li>".$row["name"]."</li>";
}
$num=mysql_num_rows(mysql_query("select * from news"));
$pagenum=@ceil($num/$pagesize);
for($i=1;$i<=$pagenum;$i++){
if($page==$i){
$str.="<a href='javascript:void(0)' onclick=changepage(".$i.")>[".$i."]</a> ";
}else{
$str.="<a href='javascript:void(0)' onclick=changepage(".$i.")>".$i."</a> ";
}
}
echo $str;
}else{
die();
}
?>
jquery的文件自己去网上下载好了 这个就不贴了!
index.php
<?php
header("Content-Type:text/html;charset=utf-8");
?>
<html>
<head>
<title>test</title>
<style>
A{text-decoration:none;}
A:link {COLOR:#33CCFF;}
A:active {COLOR:#FF6666;}
A:visited {COLOR:#33CCFF;}
A:hover {COLOR:#FF6699; TEXT-DECORATION: underline;position:relative;left:1px;top:1px}
</style>
<script src="jquery.min.js"></script>
<script language="javascript">
$(document).ready(function(){
changepage(1);
});
function changepage(page){
$.post("sql.php",{page:page},function(data){
$("#test").html(data);
});
}
</script>
</head>
<body>
<ul id="test"></ul>
</body>
</html>
sql.php
<?php
mysql_connect("localhost","root","");
mysql_select_db("test");
mysql_query("set names utf8");
if(isset($_POST["page"])){
@$page = max(1, intval($_POST["page"]));
$pagesize=10;
$startindex=($page-1)*$pagesize;
$sql="SELECT * FROM news ORDER BY id LIMIT $startindex,$pagesize";
$rec=mysql_query($sql);
$str="";
while($row=mysql_fetch_array($rec)){
$str.="<li>".$row["name"]."</li>";
}
$num=mysql_num_rows(mysql_query("select * from news"));
$pagenum=@ceil($num/$pagesize);
for($i=1;$i<=$pagenum;$i++){
if($page==$i){
$str.="<a href='javascript:void(0)' onclick=changepage(".$i.")>[".$i."]</a> ";
}else{
$str.="<a href='javascript:void(0)' onclick=changepage(".$i.")>".$i."</a> ";
}
}
echo $str;
}else{
die();
}
?>
jquery的文件自己去网上下载好了 这个就不贴了!
2013-06-02
展开全部
什么材料的平面模具适合做铅零件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询