javascript - How to trigger a mouse move event from jQuery - Stack Overflow

admin2025-04-03  0

I'm trying to manually trigger a mousemove event with jQuery. Demo in this fiddle /

From other similar posts on Stack Overflow it seems that this should work. Why isn't it?

I'm trying to manually trigger a mousemove event with jQuery. Demo in this fiddle http://jsfiddle/qJJQW/

From other similar posts on Stack Overflow it seems that this should work. Why isn't it?

Share edited Nov 20, 2020 at 21:03 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Oct 22, 2013 at 10:43 hofnarwilliehofnarwillie 3,66010 gold badges53 silver badges76 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 4

Use jQuery to bind the mousemove event:

$(function () {
   $("#test").on("mousemove", youCantHandleTheFunc);

    $('#button').click(function () {
        $('#test').trigger('mousemove', {type:'custom mouse move'});
    });
});

function youCantHandleTheFunc (e,customE) {
    if (customE != undefined) {
         e = customE;   
    }
    $('#result').html(e.type);
}

Your updated fiddle.

jQuery's trigger() only triggers event handlers set with jQuery ?

$(function(){
    $('#test').on('mousemove', youCantHandleTheFunc); 

    $('#button').click(function(){
        $('#test').trigger('mousemove',{type:'custom mouse move'});
    });
});

function youCantHandleTheFunc(e,customE){
    if (customE!=undefined){
         e=customE;   
    }
    $('#result').html(e.type);
}

FIDDLE

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743689302a215514.html

最新回复(0)