麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 開發(fā) > XML > 正文

Xml_javascript分頁

2024-09-05 20:54:35
字體:
來源:轉載
供稿:網(wǎng)友

Xml_javascript分頁實例:


<!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" >
<head>
<title>龍的傳人--Xml_javascript分頁</title>

</head>
<body onload="getxmlDoc()">
<script language="javascript" type="text/javascript">
var xmlDoc;
var nodeIndex;
var pageIndex;
var pageSize=13;
var lastPage; //最后一頁
var overSize //最后一頁的記錄數(shù)
function 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();

}
function 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(overSize>0)
{
lastPage=recordCount-overSize;
}
else
{
lastPage=recordCount-pageSize;
}

}
function 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=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);
}
}
function onFirst()
{
pageIndex=0;
var currIndex=pageIndex;
getPageRecord(currIndex,pageSize)
pageIndex=currIndex ;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) 1;
document.getElementById("txtCurrPageRecord").value=pageSize;
}
function onPrev()
{
var currIndex=pageIndex;
currIndex-=pageSize;
getPageRecord(currIndex,pageSize)
pageIndex=currIndex;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) 1;
document.getElementById("txtCurrPageRecord").value=pageSize;

}
function onNext()
{
var currIndex=pageIndex;
currIndex =pageSize;
getPageRecord(currIndex,pageSize)
pageIndex=currIndex;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) 1;
document.getElementById("txtCurrPageRecord").value=pageSize;

}
function onLast()
{
if(overSize>0)
{
getPageRecord(lastPage,overSize)
document.getElementById("txtCurrPageRecord").value=overSize;
}
else
{
getPageRecord(lastPage,pageSize)
document.getElementById("txtCurrPageRecord").value=pageSize;
}
pageIndex=lastPage;
document.getElementById("txtCurrPage").value=(pageIndex / pageSize) 1;
}
function toPage()
{
var index=document.getElementById("txtCurrPage").value
var currIndex=(index-1)*pageSize;
if(event.keyCode==13)
{
getPageRecord(currIndex,pageSize);
}
pageIndex=currIndex;
}
function addRow(i,dataGridId,arr)
{
var row=document.createElement("tr");
var cell=createCellWidthText(i);
row.appendChild(cell);
for(var j=0;j<arr.length;j )
{
cell=createCellWidthText(arr[j]);
row.appendChild(cell);
}
document.getElementById(dataGridId).firstChild.appendChild(row);
}
function createCellWidthText(text)
{
var cell = document.createElement("td");
var textNode = document.createTextNode(text);
cell.appendChild(textNode);
return cell;
}
function 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 thin solid; border-top: #0033ff thin solid;
border-left: #0033ff thin solid; width: 650px; border-bottom: #0033ff thin solid">
<tr>
<td>
共<input id="txtPageCount" name="txtPageCount" style="width: 33px; color: #0000ff; border-top-style: none; border-right-style: none; border-left-style: none; background-color: transparent; border-bottom-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-color: transparent; border-bottom-style: none;" type="text" onkeydown="toPage()"/>條記錄
<input id="btnFirst" type="button" value="http://www.companysz.com/首頁" onclick="onFirst()"/>
<input id="btnPrev" type="button" value="http://www.companysz.com/上一頁" onclick="onPrev()"/>
<input id="btnNext" type="button" value="http://www.companysz.com/下一頁" onclick="onNext()"/>
<input id="btnLast" type="button" value="http://www.companysz.com/尾頁" 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: none; background-color: white; border-bottom-style: none;" type="text" onkeydown="toPage()"/>條記錄)</td>
</tr>
<tr>
<td>
&nbsp;<table width="100%" id="myTable">
<tr style="background-color:Yellow">
<td style="width: 34px; height: 21px;">
Id</td>
<td style="width: 34px; height: 21px;">
序號</td>
<td style="width: 42px; height: 21px;">
工號</td>
<td style="width: 36px; height: 21px;">
姓名</td>
<td style="width: 39px; height: 21px;">
性別</td>
<td style="width: 43px; height: 21px;">
部門</td>
<td style="width: 50px; height: 21px;">
職位</td>
<td style="width: 100px; height: 21px;">
地址</td>
</tr>
</table>
</td>
</tr>
</table>

</div>
</form>
</body>
</html>

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 中文字幕亚洲情99在线 | 国产精品爱久久久久久久 | 视频在线91 | 欧美一级精品 | 日本不卡一区二区在线观看 | 在线小视频国产 | 三级国产三级在线 | 久久久在线免费观看 | 操碰视频在线观看 | 毛片免费视频观看 | 成人羞羞在线观看网站 | 亚洲欧美在线视频免费 | 亚洲精品aⅴ中文字幕乱码 欧美囗交 | 99亚洲伊人久久精品影院红桃 | 全黄毛片| 欧美成人三级视频 | 成年人激情在线 | 成人三级电影网站 | 亚州综合一区 | 黄色免费在线网址 | 欧美精品久久久久久久久老牛影院 | 成人免费视频视频在线观看 免费 | 黄色高清免费网站 | 亚州精品在线视频 | 国产羞羞视频在线观看 | 在线视频 亚洲 | 精品国产久 | 中国洗澡偷拍在线播放 | 成人精品一区二区三区中文字幕 | 色婷婷a v | 99ri在线 | 久久人| 日韩黄a| 亚洲欧美不卡视频 | 国产女厕一区二区三区在线视 | 免费午夜视频 | 色婷婷一区二区三区 | 欧美日韩亚洲国产精品 | 国产激情精品一区二区三区 | 91快色 | 欧美成人精品一区二区男人小说 |