此回复为自动发出,仅用于显示而已,并无任何其他特殊作用
楼主【boss00000】截止到2008-07-03 13:40:59的历史汇总数据(不包括此帖):
发帖的总数量:103                      发帖的总分数:2270                     
结贴的总数量:62                       结贴的总分数:1280                     
无满意结贴数:10                       无满意结贴分:240                      
未结的帖子数:41                       未结的总分数:990                      
结贴的百分比:60.19 %               结分的百分比:56.39 %                  
无满意结贴率:16.13 %               无满意结分率:18.75 %                  
楼主加油

解决方案 »

  1.   

    function stop()
    {   
        alert("stop");
        window.document.documentElement.onmousemove=null;
    }div.onmouseup=stop;当div触发div.onmouseup事件时会执行stop()方法!如果stop()方法改成
    function stop(a)
    {   
        alert(a);
        window.document.documentElement.onmousemove=null;
    }这时候div.onmouseup=后面该写什么呢?
      

  2.   

    div.onmouseup=function(){stop('a') }