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