最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin2浏览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

发布评论

评论列表(0)

  1. 暂无评论