摘要 腾兴网为您分享:php ajax分页代码,智慧农业,长沙银行,一折包邮,信和财富等软件知识,以及381.65,红娘牵线,中经油马,战地小,歌词制作,唯美会,微软必应输入法,邓州在线,螺丝钉,侠客风云传补丁,打方块,创创营销,华为荣耀9,加勒比海盗高清壁纸,中国信鸽赛事等软件it资讯,欢迎关注腾兴网。html head script language=javascript function createXMLHttp(){ if(window.ActiveXObject){ return new ActiveXObject(Microsoft.XMLHttp); } else if(window.XMLHttpRequest){ return new XMLHttpRequest(); } } function Pager(){ var that=this; this.l...
function createXMLHttp(){
if(window.ActiveXObject){
return new ActiveXObject("Microsoft.XMLHttp");
}
else if(window.XMLHttpRequest){
return new XMLHttpRequest();
}
}
function Pager(){
var that=this;
this.link=function(url){
that.xmlHttp = createXMLHttp();
that.xmlHttp.onreadystatechange = that.receive;
that.xmlHttp.open("GET", url, true);
that.xmlHttp.send(null);
}
this.receive=function(){
if((that.xmlHttp.readyState == 4)){
if(that.xmlHttp.status == 200){
that.reaction(that.xmlHttp.responseXML);
}else{
that.recover();
}
}
}
}
var a = new Pager();
var pages = 0;
a.recover = function (){
go = function (u){
go = function (){
};
a.link(u);
};
};
a.reaction = function (xml){
document.getElementById('page_content').innerHTML = xml.getElementsByTagName('content')[0].childNodes[0].nodeValue;
if(xml.getElementsByTagName('count')[0].childNodes[0].nodeValue != pages){
s = '
for(i = 1; i <= xml.getElementsByTagName('count')[0].childNodes[0].nodeValue; i)
{
if(i == xml.getElementsByTagName('current')[0].childNodes[0].nodeValue)
s= '
' i '';else
s= '
' i '';}
s= '
';document.getElementById('page_bar').innerHTML = s;
}
a.recover();
}
a.link('page.php');
page.php代码.
class class_page
{
private $record_count, $perpage;
private $page_count, $page_current;
function __construct($perpage, $record_count, $page_current)
{
$this->perpage = $perpage;
$this->record_count = $record_count;
$this->page_count = ($record_count == 0) ? 1 : ceil($record_count / $perpage);
$this->page_current = ($page_current > $this->page_count) ? 1 : $page_current;
}
function __get($name)
{
switch($name)
{
case 'page_count':
return $this->page_count;
case 'page_current':
return $this->page_current;
case 'record_start':
return ($this->page_current - 1) * $this->perpage;
}
}
}
header('Content-Type: text/xml; charset=gbk');
$page = new class_page(20, 150, is_numeric($_GET['page']) ? $_GET['page'] : 1);
echo '<?xml version="1.0"?>';
echo '';
echo '' . $page->page_count . '';
echo '' . $page->page_current . '';
echo '' . pow($page->page_current, 2) . '';
echo '';
?>
相关推荐