5

我正在尝试mousemove使用 jQuery 手动触发事件。这个小提琴中的演示http://jsfiddle.net/qJJQW/

从 Stack Overflow 上的其他类似帖子看来,这应该可行。为什么不是?

4

2 回答 2

4

使用 jQuery 绑定 mousemove 事件:

$(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);
}

你更新的小提琴。

于 2013-10-22T10:48:05.050 回答
4

jQuerytrigger()仅触发使用 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);
}

小提琴

于 2013-10-22T10:48:20.357 回答