【发布时间】:2013-05-07 19:17:30
【问题描述】:
我有这个带有 Raphael.js 的代码:
var set = paper.set();
// ... here push some elements to set: path, circles, etc.
set.mousedown(function() { ... });
set.mousemove(function() { ... });
set.mouseup(function() { ... });
一切正常...但是如何在“设置”和bind 上再次执行unbind .mousemove 事件?
【问题讨论】:
标签: javascript raphael