| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 627 人关注过本帖
标题:拖动行 ff怎么不兼容啊
只看楼主 加入收藏
liaohongchu
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2008-4-25
结帖率:78.72%
收藏
 问题点数:0 回复次数:2 
拖动行 ff怎么不兼容啊
拖动行 ff怎么不兼容啊  ,谁做过JQUERY拖动行
<html>
<head>
    <title>拖动行测试</title>
    <script language="javascript">
            var beginMoving=false;
            function MouseDownToMove(obj,e){
                obj.style.zIndex=1;
                var e = window.event?window.event:e
                //alert(e);
                obj.mouseDownY=e.clientY;
                obj.mouseDownX=e.clientX;
                beginMoving=true;
                //obj.setCapture();
                //window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);
                //window.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);
                if (!window.captureEvents) {
                obj.setCapture();
                }else {
                window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);
                }
                if (!window.captureEvents) {
                obj.releaseCapture();
                }else {
                window.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);
                }


            }

            function MouseMoveToMove(obj,e){
                if(!beginMoving) return false;
                e = e||event;
                obj.style.top = (e.clientY-obj.mouseDownY);
                obj.style.left = (e.clientX-obj.mouseDownX);
            }
            
            function MouseUpToMove(obj,e){
                if(!beginMoving) return false;
                //obj.releaseCapture();
                if (!window.captureEvents) {
                obj.setCapture();
                }else {
                window.captureEvents(Event.MOUSEMOVE|Event.MOUSEUP);
                }
                if (!window.captureEvents) {
                obj.releaseCapture();
                }else {
                window.releaseEvents(Event.MOUSEMOVE|Event.MOUSEUP);
                }
                obj.style.top=0;
                obj.style.left=0;
                obj.style.zIndex=0;
                beginMoving=false;
                e = e||event;
                var tempTop=e.clientY-obj.mouseDownY;
                var tempRowIndex=(tempTop-tempTop%25)/25;
                if(tempRowIndex+obj.rowIndex <0 )tempRowIndex=-1;
                else tempRowIndex=tempRowIndex+obj.rowIndex;
                //alert(tempRowIndex);
                if(tempRowIndex >= obj.parentElement.rows.length-1) tempRowIndex = obj.parentElement.rows.length-1;
                obj.parentElement.moveRow(obj.rowIndex,tempRowIndex);
                //obj.parentNode.moveRow(obj.rowIndex,tempRowIndex);
           }
        </script>
        
</head>        
        
<body>
<table  id="filelistTab" cellspacing="0" cellpadding="2" border=1>
<tr>
    <td class="gridtitle" style="WIDTH: 40px">列一</td>
    <td class="gridtitle" style="WIDTH: 100px">列二</td>
    <td class="gridtitle" style="WIDTH: 110px">列三</td>
</tr>

<tr id="1" title="拖动行可以进行排序" style="cursor:move ;position:relative;" onmousedown='MouseDownToMove(this,event)' onmousemove='MouseMoveToMove(this,event)' onmouseup='MouseUpToMove(this,event);'>
    <td class="gridtitle"><input class="text" id="group1" style="WIDTH: 30px" type="text" readonly value="1" /></td>
    <td class="gridtitle">
        11111111111111111111
    </td>
    <td class="gridtitle"><input class="text" id="fn1" readOnly type="text" style="width:100px" value="11111111111111111111" /></td>
</tr>

<tr id="2" title="拖动行可以进行排序" style="cursor:move ;position:relative;" onmousedown='MouseDownToMove(this,event)' onmousemove='MouseMoveToMove(this,event)' onmouseup='MouseUpToMove(this,event);'>
    <td class="gridtitle"><input class="text" id="group2" style="WIDTH: 30px" type="text" readonly value="2" /></td>
    <td class="gridtitle">
        222222222222222222222
    </td>
    <td class="gridtitle"><input class="text" id="fn2" readOnly type="text" style="width:100px" value="22222222222222222222222" /></td>
</tr>

<tr id="3" title="拖动行可以进行排序" style="cursor:move ;position:relative;" onmousedown='MouseDownToMove(this,event)' onmousemove='MouseMoveToMove(this,event)' onmouseup='MouseUpToMove(this,event);'>
    <td class="gridtitle"><input class="text" id="group3" style="WIDTH: 30px" type="text" readonly value="3" /></td>
    <td class="gridtitle">
        3333333333333333333333
    </td>
    <td class="gridtitle"><input class="text" id="fn3" readOnly type="text" style="width:100px" value="333333333333333" /></td>
</tr>

<tr id="4" title="拖动行可以进行排序" style="cursor:move ;position:relative;" onmousedown='MouseDownToMove(this,event)' onmousemove='MouseMoveToMove(this,event)' onmouseup='MouseUpToMove(this,event);'>
    <td class="gridtitle"><input class="text" id="group4" style="WIDTH: 30px" type="text" readonly value="4" /></td>
    <td class="gridtitle">
        444444444444444444444
    </td>
    <td class="gridtitle"><input class="text" id="fn4" readOnly type="text" style="width:100px" value="4444444444444444444444444444" /></td>
</tr>

<tr id="5" title="拖动行可以进行排序" style="cursor:move ;position:relative;" onmousedown='MouseDownToMove(this,event)' onmousemove='MouseMoveToMove(this,event)' onmouseup='MouseUpToMove(this,event);'>
    <td class="gridtitle"><input class="text" id="group5" style="WIDTH: 30px" type="text" readonly value="5" /></td>
    <td class="gridtitle">
        55555555555555555555555
    </td>
    <td class="gridtitle"><input class="text" id="fn5" readOnly type="text" style="width:100px" value="555555555555555555555" /></td>
</tr>

<tr id="6" title="拖动行可以进行排序" style="cursor:move ;position:relative;" onmousedown='MouseDownToMove(this,event)' onmousemove='MouseMoveToMove(this,event)' onmouseup='MouseUpToMove(this,event);'>
    <td class="gridtitle"><input class="text" id="group6" style="WIDTH: 30px" type="text" readonly value="6" /></td>
    <td class="gridtitle">
        6666666666666666666666666
    </td>
    <td class="gridtitle"><input class="text" id="fn6" readOnly type="text" style="width:100px" value="666666666666666666666" /></td>
</tr>

</table>

<script>
function testFun(evt,a,b,x)
{
 var e = window.event?window.event:evt
 alert(e)
 var ele = window.event?window.event.srcElement:evt.target
 alert(ele.tagName)
}
</script>
<a href="#" onClick="testFun(event,'a','b','c');return false;"> 测试</a>


</body>
</html>
搜索更多相关主题的帖子: false 
2011-01-11 17:24
liaohongchu
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2008-4-25
收藏
得分:0 
2011-01-11 20:49
liaohongchu
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2008-4-25
收藏
得分:0 
顶贴给分了
2011-01-11 20:49
快速回复:拖动行 ff怎么不兼容啊
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024970 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved