我有一个相同的来源 iframe。iframe 中的鼠标事件在文档中触发,如下所示:
// this won't work
$('iframe').contents().find('body').on('mousedown mouseup mousemove', function(e) {
$(document).trigger(e);
});
// this does work
$('iframe').contents().on('mousedown mouseup mousemove', function(e) {
$(document).trigger(e);
});
我的问题是如果 mousedown 发生在 iframe 中并且鼠标离开 iframe,文档不会触发它自己的 mousemove 事件,直到 mouseup 发生。
一旦鼠标离开 iframe,我已经尝试在 iframe 和文档中触发 mouseup,但是在物理 mouseup 发生之前,文档 mousemove 事件不会恢复。