代码 复制代码 代码如下: 无标题页 移动 数据 数据 数据 * 11111111111 sdgergserhserhserh awegaw * 222222222 serherwwwwww fafafff * 333333333 qqqqqqqwewer yukyuk <BR>var curTr = null; <BR>var tb1 = document.getElementById('tb1'); <BR>var trs = tb1.getElementsByTagName('tr'); <BR>tb1.onselectstart = function(){ <BR>if(curTr){ <BR>document.selection.empty(); return true; <BR>} <BR>}; <BR>for(var i=1; i<trs.length; i++) { <BR>var tds = trs[i].getElementsByTagName('td'); <BR>tds[0].style.cursor = 'move'; <BR>tds[0].onmousedown = function(){ <BR>curTr = this.parentNode; <BR>curTr.style.backgroundColor = '#eff'; <BR>}; <BR>tds[0].onmouseover = function() { <BR>if(curTr && curTr != this.parentNode) { <BR>this.parentNode.swapNode(curTr); <BR>} <BR>} <BR>} <BR>document.body.onmouseup = function(){ <BR>if(curTr){ <BR>curTr.style.backgroundColor = ''; <BR>curTr = null; <BR>} <BR>}; <BR> 注:不兼容firefox,在IE和chrome下测试通过哦。