jquery – 为什么我可以关闭mousedown事件,但不能关闭它的链接鼠标事件?

我有两个链式鼠标事件:

$('body > form').on("mousedown", function(e){ 
    //Do stuff 
}).on("mouseup", function(){
    /*More stuff, including
       window.addEventListener(...
    */  
});

但是,当我尝试从另一个外部函数关闭()它们时,我只能关闭()mousedown,而不是mouseup,它的功能继续有效.

这个嵌套的addEventListener可以阻止我发布它的事件吗? (

顺便说一下,我怎么样都没关系
chain:($().off().off();),或unchain($().off(); $().off();),或者结合($().off(AB); )或反转(AB – BA)元素;一直,关闭(mousedown)工作,但从不关闭(向上).

这是我的完整JS代码:

(有问题的部分是第二个脚本,最后:)

<script>
function comment() {

    $('body > form').on("mousedown.markerPlacer", function(e){   
     //Place the cursor marker on the screen 

        var newComment2 = $('<div id="newComm" class="marker" class="deg45" &uarr;</div>');
        $('form').append(newComment2);  

    }).on("mouseup", function(){   
    //Now use the Q-key to rotate the marker.

       window.addEventListener("keydown", extraKey, false); 
       window.addEventListener("keyup", keysReleased2, false); 

            function extraKey(e) {
                var deg = e.keyCode;  
                    if (deg == 81)  { //81 is the keycode, which codes for Q
                        $('#newComm').attr('class', 'marker').addClass('deg0'); 
                    } else {
                        return false;
                    };  
                    e.preventDefault(); 
            };                 
            function keysReleased2(e) {
                e.keyCode = false;
            };
    });  
};
</script>

<script>
function dismissComment() {
        $('body > form').off("mousedown mouseup");    
}
</script>

最佳答案 出于好奇,我写了一个类似的链式mousedown和mouseup,如代码所示.

然后我点击按钮取消绑定它们.

它似乎工作正常,我无法重现你的问题.

它能够“关闭”mousedown和mouseup事件监听器.

$("#testMe")
  .on("mousedown", function(e) {
    appendText(getButton(e.button) + " | " + $(this).attr("id") + " | " + "mouseDOWN | " + new Date());
  })
  .on("mouseup", function(e) {
    appendText(getButton(e.button) + " | " + $(this).attr("id") + " | " + "mouseUP | " + new Date());

    $(document).off("keydown keyup");
    $(document).on("keydown", keydown_pressed);
    $(document).on("keyup", keyup_pressed);
  });

取消绑定/“关闭”代码

$("#unbind").click(function(e) {
  $("#testMe").off("mousedown mouseup");
  $(document).off("keydown keyup");
});

在页面加载时,mousedown和mouseup将附加到输入文本框.

《jquery – 为什么我可以关闭mousedown事件,但不能关闭它的链接鼠标事件?》

鼠标单击文本框后,将添加窗口keydown和keyup事件侦听器.

《jquery – 为什么我可以关闭mousedown事件,但不能关闭它的链接鼠标事件?》

在“关闭”或解除绑定后,将删除所有事件侦听器.

《jquery – 为什么我可以关闭mousedown事件,但不能关闭它的链接鼠标事件?》

jsfiddle link

点赞