打印本文 打印本文 关闭窗口 关闭窗口
Xml_javascript分页(2)
作者:武汉SEO闵涛  文章来源:敏韬网  点击数610  更新时间:2009/4/23 11:18:46  文章录入:mintao  责任编辑:mintao
     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="首页" 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: none; background-color: white; border-bottom-style: none;" type="text" onkeydown="toPage()"/>条记录)</td>
   </tr>
   <tr>
   <td>
    <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>
  演示:http://home.goofar.com/lkc311/Default.htm
    

打印本文 打印本文 关闭窗口 关闭窗口