0

我有这个带有 Raphael.js 的代码:

var set = paper.set();
// ... here push some elements to set: path, circles, etc.
set.mousedown(function() { ... });
set.mousemove(function() { ... });
set.mouseup(function() { ... });

一切正常......但是如何unbind .mousemove在“设置”上bind再次进行事件?

4

1 回答 1

0

un在事件名称之前添加http://raphaeljs.com/reference.html#Element.unmousemove

// Pass the handler to install it
set.mousemove(handler);
// Pass the same handler to remove it
set.unmousemove(handler);

Raphael JS:如何删除事件?

您不能像以前那样传入匿名函数,因为在删除处理程序时必须传递对该函数的引用

于 2013-05-07T19:19:56.673 回答