XML_javascript ページネーション
著者:Eve Cole
更新時間:2009-07-07 16:22:09
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns=" http://www.w3.org/1999/xhtml " >
<頭>
<title>龙的传人--Xml_javascript分页</title>
</head>
<body onload="getxmlDoc()">
<script language="javascript" type="text/javascript">
var xmlDoc;
var ノードインデックス;
var pageIndex;
var pageSize=13;
var lastPage; //最後の一页
var overSize //最後の一页の记录数
関数 getxmlDoc()
{
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
var currNode;
xmlDoc.async=false;
xmlDoc.load("myTest.xml");
if(xmlDoc.parseError.errorCode!=0)
{
var myErr=xmlDoc.parseError;
alert("出错!"+myErr.reason);
}
getRecordCount();
onFirst();
}
関数 getRecordCount()
{
var personNode= xmlDoc.selectNodes("/Root")[0];
var RecordCount=personNode.childNodes.length;
var pageCount=Math.ceil(レコード数/ページサイズ);
document.getElementById("txtPageCount").value=pageCount;
document.getElementById("txtRecordCount").value=レコード数;
overSize=レコード数%ページサイズ;
if(オーバーサイズ>0)
{
lastPage=レコードカウントオーバーサイズ;
}
それ以外
{
lastPage=レコード数-ページサイズ;
}
}
関数 getPageRecord(pageIndex,pageSize)
{
ClearRow("myTable");
var personNode= xmlDoc.selectNodes("/Root")[0];
var currNode=personNode.childNodes[pageIndex];
for(var i=pageIndex;i<pageIndex+pageSize;i++)
{
var arr=新しい配列();
var nNode= xmlDoc.selectSingleNode("Root/person["+i+"]") ;
arr[0]=nNode.getAttribute("ID"); //序号
arr[1]=nNode.childNodes[0].text; //工号
arr[2]=nNode.childNodes[1].text; //姓名
arr[3]=nNode.childNodes[2].text; //性質别
arr[4]=nNode.childNodes[3].text; //部门
arr[5]=nNode.childNodes[4].text; //职位
arr[6]=nNode.childNodes[5].text; //地址
// arr[0]=personNode.childNodes[i].getAttribute("Id"); //序号
// arr[1]=personNode.childNodes[i].childNodes[0].text; //工号
// arr[2]=personNode.childNodes[i].childNodes[1].text; //姓名
// arr[3]=personNode.childNodes[i].childNodes[2].text; //性質别
// arr[4]=personNode.childNodes[i].childNodes[3].text; //部门
// arr[5]=personNode.childNodes[i].childNodes[4].text; //职位
// arr[6]=personNode.childNodes[i].childNodes[5].text; //地址
addRow(i+1,"myTable",arr);
}
}
関数 onFirst()
{
ページインデックス=0;
var currIndex=pageIndex;
getPageRecord(currIndex,pageSize)
pageIndex=currIndex ;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
document.getElementById("txtCurrPageRecord").value=pageSize;
}
関数 onPrev()
{
var currIndex=pageIndex;
currIndex-=pageSize;
getPageRecord(currIndex,pageSize)
pageIndex=currIndex;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
document.getElementById("txtCurrPageRecord").value=pageSize;
}
関数 onNext()
{
var currIndex=pageIndex;
currIndex+=pageSize;
getPageRecord(currIndex,pageSize)
pageIndex=currIndex;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
document.getElementById("txtCurrPageRecord").value=pageSize;
}
onLast()関数
{
if(オーバーサイズ>0)
{
getPageRecord(lastPage,overSize)
document.getElementById("txtCurrPageRecord").value=overSize;
}
それ以外
{
getPageRecord(lastPage,pageSize)
document.getElementById("txtCurrPageRecord").value=pageSize;
}
pageIndex=lastPage;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
}
toPage()関数
{
varindex=document.getElementById("txtCurrPage").value
var currIndex=(index-1)*pageSize;
if(event.keyCode==13)
{
getPageRecord(currIndex,pageSize);
}
pageIndex=currIndex;
}
関数 addRow(i,dataGridId,arr)
{
var row=document.createElement("tr");
var cell=createCellWidthText(i);
row.appendChild(セル);
for(var j=0;j<arr.length;j++)
{
cell=createCellWidthText(arr[j]);
row.appendChild(セル);
}
document.getElementById(dataGridId).firstChild.appendChild(row);
}
関数 createCellWidthText(テキスト)
{
var cell = document.createElement("td");
var textNode = document.createTextNode(text);
cell.appendChild(textNode);
セルを返します。
}
関数clearRow(obj)
{
var table=document.getElementById(obj);
var nodeTbody=table.firstChild
var length=nodeTbody.childNodes.length;
for(var i=length-1;i>0;i--)
{
nodeTbody.removeChild(nodeTbody.childNodes[i]);
}
}
</script>
<form id="form1" runat="server">
<div>
<table align="center" style="border-right: #0033ff 薄いソリッド; border-top: #0033ff 薄いソリッド;
境界左: #0033ff 薄い実体。幅: 650ピクセル;ボーダーボトム: #0033ff 薄いソリッド">
<tr>
<td>
共<input id="txtPageCount" name="txtPageCount" style="width: 33px; color: #0000ff; border-top-style: none; border-right-style: none; border-left-style: none; 背景-色: 透明; ボーダーボトムスタイル: なし; type="text" onkeydown="toPage()"/>页/
<input id="txtRecordCount" name="txtRecordCount" style="width: 46px; color: #3300ff; border-top-style: none; border-right-style: none; border-left-style: none; background-色: 透明; ボーダーボトムスタイル: なし; type="text" onkeydown="toPage()"/>条记录
<input id="btnFirst" type="button" value="首页" onclick="onFirst()"/>
<input id="btnPrev" type="button" value="上一页" onclick="onPrev()"/>
<input id="btnNext" type="button" value="下一页" onclick="onNext()"/>
<input id="btnLast" type="button" value="尾页" onclick="onLast()"/>
第<input id="txtCurrPage" name="txtCurrPage" style="幅: 46px; カラー: #ff3333;" type="text" onkeydown="toPage()"/>
页(当前页<input id="txtCurrPageRecord" name="txtCurrPageRecord" style="width: 22px; color: #ff3333; border-top-style: none; border-right-style: none; border-left-style:なし; 背景色: 白; ボーダーボトムスタイル: なし;" type="text" onkeydown="toPage()"/>条记录)</td>
</tr>
<tr>
<td>
<テーブル幅="100%" id="myTable">
<tr style="background-color:Yellow">
<td style="幅: 34px; 高さ: 21px;">
ID</td>
<td style="幅: 34px; 高さ: 21px;">
シーケンス番号</td>
<td style="幅: 42px; 高さ: 21px;">
工号</td>
<td style="幅: 36px; 高さ: 21px;">
姓名</td>
<td style="幅: 39px; 高さ: 21px;">
性别</td>
<td style="幅: 43px; 高さ: 21px;">
部门</td>
<td style="幅: 50px; 高さ: 21px;">
职位</td>
<td style="幅: 100px; 高さ: 21px;">
地址</td>
</tr>
</テーブル>
</td>
</tr>
</テーブル>
</div>
</form>
</body>
</html>
演示: http://home.goofar.com/lkc311/Default.htm