H5拖拽时不能触发onmouseup事件

最近在写音乐播放器的项目遇到了一个问题,要写一个快进块大概是这样的
这里写图片描述

代码

            stripsBtn.onmousedown=function(ev){
                var ev=ev || window.event;
                disX=ev.clientX-stripsBtn.offsetLeft;
                document.onmousemove=function(ev){
                    var ev=ev || window.event;
                    var l=ev.clientX-disX;
                    if(l<0){
                        l=0
                    }else if(l>stripsWarp.offsetWidth-stripsBtn.offsetWidth){
                        l=stripsWarp.offsetWidth-stripsBtn.offsetWidth
                    }
                    stripsBtn.style.left=l+'px';
                    //已经走过的长度/总长度(路程)
//                    var s=l/(oBtn1.offsetWidth-oBtn2.offsetWidth);
//                    oV.currentTime=s*oV.duration;
                }
                document.onmouseup=function(){
                    console.log('鼠标被放开了');
                    document.onmousemove=null;
                    document.onmousedown=null;
                }
            }

但是会有个问题。按住黑块并向上拖拽的时候,会触发H5原生的拖拽事件。并且不会监听到onmouseup。这样会造成一个当松开鼠标的时候会造成黑色块跟着鼠标的运动轨迹去横向移动。

解决办法就是直接干掉H5的拖拽事件

        document.ondragstart = function(ev) {
            ev.preventDefault();
        };
        document.ondragend = function(ev) {
            ev.preventDefault();
        };

你可能感兴趣的:(html5)