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>
</头>
<body onload="getxmlDoc()">
<脚本语言=“javascript”类型=“text/javascript”>
var xmlDoc;
var 节点索引;
var pageIndex;
var pageSize=13;
var 最后一页; //最后一页
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(recordCount/pageSize);
document.getElementById("txtPageCount").value=pageCount;
document.getElementById("txtRecordCount").value=recordCount;
overSize=recordCount%pageSize;
if(超过尺寸>0)
{
最后一页=记录计数-超过大小;
}
别的
{
最后一页=记录计数-页大小;
}
}
函数 getPageRecord(pageIndex,pageSize)
{
清除行(“我的表”);
var personNode= xmlDoc.selectNodes("/Root")[0];
var currNode=personNode.childNodes[pageIndex];
for(var i=pageIndex;i<pageIndex+pageSize;i++)
{
var arr=new Array();
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=页索引;
getPageRecord(currIndex,pageSize)
页面索引=当前索引;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
document.getElementById("txtCurrPageRecord").value=pageSize;
}
函数 onPrev()
{
var currIndex=页面索引;
currIndex-=pageSize;
getPageRecord(currIndex,pageSize)
页面索引=当前索引;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
document.getElementById("txtCurrPageRecord").value=pageSize;
}
函数 onNext()
{
var currIndex=页索引;
currIndex+=页面大小;
getPageRecord(currIndex,pageSize)
页面索引=当前索引;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
document.getElementById("txtCurrPageRecord").value=pageSize;
}
函数 onLast()
{
if(超过尺寸>0)
{
getPageRecord(最后一页,overSize)
document.getElementById("txtCurrPageRecord").value=overSize;
}
别的
{
getPageRecord(最后一页,pageSize)
document.getElementById("txtCurrPageRecord").value=pageSize;
}
页索引=最后一页;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) + 1;
}
函数 toPage()
{
var index=document.getElementById("txtCurrPage").value
var currIndex=(index-1)*pageSize;
if(event.keyCode==13)
{
getPageRecord(currIndex,pageSize);
}
页面索引=当前索引;
}
函数 addRow(i,dataGridId,arr)
{
var row=document.createElement("tr");
var cell=createCellWidthText(i);
row.appendChild(单元格);
for(var j=0;j<arr.length;j++)
{
单元格=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]);
}
}
</脚本>
<form id="form1" runat="服务器">
<div>
<tablealign=“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="width: 46px; color: #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>
<table width="100%" id="myTable">
<tr style="background-color:Yellow">
<td样式=“宽度:34像素;高度:21像素;”>
编号</td>
<td样式=“宽度:34像素;高度:21像素;”>
序号</td>
<td样式=“宽度:42像素;高度:21像素;”>
工号</td>
<td样式=“宽度:36像素;高度:21像素;”>
姓名</td>
<td样式=“宽度:39像素;高度:21像素;”>
性别</td>
<td样式=“宽度:43像素;高度:21像素;”>
部门</td>
<td样式=“宽度:50像素;高度:21像素;”>
职位</td>
<td 样式 =“宽度:100 像素;高度:21 像素;”>
地址</td>
</tr>
</表>
</td>
</tr>
</表>
</div>
</形式>
</正文>
</html>
演示:http: //home.goofar.com/lkc311/Default.htm