?php
Header("Content-Type:text/html; charset=utf-8");
function AjaxPage($Total,$ListNub,$CurrentPage,$Url,$AjaxAction,$HalfPer='',$ViewId='')
{
//計算總頁數(shù)
$totalPage = @ceil($Total/$ListNub);
$total=$totalPage-1;
$re="";
//echo $CurrentPage;
$re .= ( $CurrentPage > 0 )
?
"td>a
href=\"javascript:$AjaxAction('$Url=0','$ViewId')\"\">首頁/a>/td>\ntd>a
href=\"javascript:$AjaxAction('".$Url."=".($CurrentPage-1)."','$ViewId')\"\">上一頁/a>/td>\n"
:
"td>首頁/td>\ntd>上一頁/td>\n";
for ( $i =
$CurrentPage - $HalfPer,$i > 0 || $i = 0 , $j =
$CurrentPage + $HalfPer, $j $totalPage || $j = $totalPage;$i $j ;$i++
)
{
$re .= $i == $CurrentPage
?
"td>b class=currentPage>[" . ( $i + 1 ) .
"]/b>/td>\n"
: "td>a
href=\"javascript:$AjaxAction('$Url=$i','$ViewId')\">" . ( $i + 1 ) .
"/a>/td>\n";
}
$re .= ( $CurrentPage $total
)
? "td>a
href=\"javascript:$AjaxAction('".$Url."=".($CurrentPage+1)."','$ViewId')\"\">下一頁/a>/td>\ntd>a
href=\"javascript:$AjaxAction('".$Url."=".($total)."','$ViewId')\"\">尾頁/a>\n/td>"
:
"td>下一頁/td>\ntd>尾頁/td>\n";
$re="table
style=text-align:center>tr>$re/tr>/table>";
return
$re;
}
//總頁數(shù),傳遞的頁面變量-當前頁 url地址 前后各多少頁
$page = $_GET['page'];
//echo
page('10',$page,'index.php?page','2');
?>
div id="nike">
?php
echo
AjaxPage(200,20,$page,'rand.php?page','ajaxaction','2','nike');
?>
/div>
script type="text/javascript" language="javascript">
var
http_request = false;
function send_request(url,htmlid) {
http_request =
false;
if (window.XMLHttpRequest) {
http_request = new
XMLHttpRequest();
if (http_request.overrideMimeType)
{
http_request.overrideMimeType('text/xml');
}
}
else if (window.ActiveXObject) {
try
{
http_request = new
ActiveXObject("Msxml2.XMLHTTP");
} catch (e)
{
try {
http_request = new
ActiveXObject("Microsoft.XMLHTTP");
} catch (e)
{}
}
}
if (!http_request)
{
alert('不能創(chuàng)建 XMLHttpRequest 對象!');
return
false;
}
http_request.onreadystatechange = function
(){likeakak(htmlid);}//processRequest(htmlid)
http_request.open('GET',
url, true);
http_request.send(null);
}
//處理返回信息
function processRequest(htmlid) {
if
(http_request.readyState == 1)
{
document.getElementById(htmlid).innerHTML="下載中...";
}
if
(http_request.readyState == 4) {
if (http_request.status == 200)
{
document.getElementById(htmlid).innerHTML=http_request.responseText;
}
else
{
alert('請求異常');
}
}
}
//處理返回信息
function
likeakak(htmlid)
{
if (http_request.readyState == 1)
{
document.getElementById(htmlid).innerHTML="下載中...";
}
if
(http_request.readyState == 4) {
if (http_request.status == 200)
{
document.getElementById(htmlid).innerHTML=http_request.responseText;
}
else
{
alert('請求異常');
}
}
}
function
ajaxaction(url,viewid)
{
send_request(url,viewid);
}
//自定義調(diào)用函數(shù)
function elist(id)
{
var inputarray = new
Array();
inputarray[1] = 'aaa';
inputarray[2] =
'bbb';
inputarray[3] = 'ccc';
inputarray[4] =
'ddd';
inputarray[5] = 'eee';
send_request('ajax.php?do=ajaxsort='+id,inputarray[id]);
}
/script>
您可能感興趣的文章:- php+ajax實現(xiàn)無刷新動態(tài)加載數(shù)據(jù)技術(shù)
- php+html5實現(xiàn)無刷新圖片上傳教程
- PHP+ajax 無刷新刪除數(shù)據(jù)
- php+ajax實現(xiàn)無刷新分頁的方法
- AJAX PHP無刷新form表單提交的簡單實現(xiàn)(推薦)
- PHP+AJAX實現(xiàn)無刷新注冊(帶用戶名實時檢測)
- PHP Ajax實現(xiàn)頁面無刷新發(fā)表評論
- PHP Ajax實現(xiàn)頁面無刷新發(fā)表評論
- ajax實現(xiàn)無刷新分頁(php)
- PHP+Ajax無刷新帶進度條圖片上傳示例
- php的無刷新操作實現(xiàn)方法分析