我正在尝试mousemove
使用 jQuery 手动触发事件。这个小提琴中的演示http://jsfiddle.net/qJJQW/
从 Stack Overflow 上的其他类似帖子看来,这应该可行。为什么不是?
我正在尝试mousemove
使用 jQuery 手动触发事件。这个小提琴中的演示http://jsfiddle.net/qJJQW/
从 Stack Overflow 上的其他类似帖子看来,这应该可行。为什么不是?
使用 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);
}
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);
}