How can I prevent text/element selection with cursor drag

后端 未结 8 1056
刺人心
刺人心 2020-12-02 08:12

I made a paging control and I noticed that while clicking on the buttons it is very easy to accidentally select the individual images and text. Is it possible to prevent thi

8条回答
  •  孤城傲影
    2020-12-02 08:39

    dragging and selecting both initialize on a mouse down event and update on subsequent mouse moves. When you handle the events to begin dragging, or to follow the mouse, cancel the event's bubbling and override the default browser return:

    something like this in your begin dragging mousedown and move handlers-

    e=e || window.event;
    pauseEvent(e);
    
    function pauseEvent(e){
        if(e.stopPropagation) e.stopPropagation();
        if(e.preventDefault) e.preventDefault();
        e.cancelBubble=true;
        e.returnValue=false;
        return false;
    }
    

提交回复
热议问题