0

https://www.facebook.com/anuary/app_295048007277420 “Watch Trailer & Clips”是可拖动对象的助手。

如果鼠标光标移动(同时拖动)到 iframe 之外,则不再更新事件。

它在无 iframe 的环境中运行良好,https://dev.anuary.com/c5e22f1a-e772-5ad6-afff-9202af28e644/

是否有可以解决此行为的设置?我怀疑 jQuery-ui 鼠标移动事件绑定到document而不是window导致问题的 .

4

1 回答 1

2

您可以尝试在 iframe 鼠标按下中使用文档鼠标移动和鼠标向上事件,如下所示。

element.bind('mousedown.' + this.widgetName, function(event){
                        _mouseMoveDelegate = function(e){
                            return _mouseMove();
                        };
                        _mouseUpDelegate = function(e){
                            return _mouseUp();
                        };
                      $(document).bind('mousemove.' + this.widgetName, _mouseMoveDelegate).bind('mouseup.' + this.widgetName, _mouseUpDelegate);
});
于 2012-10-25T07:37:53.167 回答