1. 首页
  2. 大数据
  3. Hbase
  4. JavaScript高级程序设计 阅读笔记(十九) js表格排序

JavaScript高级程序设计 阅读笔记(十九) js表格排序

上传者: 2020-12-12 01:40:38上传 PDF文件 25.54KB 热度 19次
排序代码 代码如下: function SortTable(sTableID, iCol, sDataType){ this.oTable=document.getElementById(sTableID); this.oTBody=this.oTable.tBodies[0]; this.colDataRows=this.oTBody.rows; this.aTRs=[]; this.iCol=iCol; this.sDataType=sDataType; } SortTable.prototype={ convert:function(sValue, sDataType){ switch
用户评论