只是不知道该怎么做。
我有一个单击事件:
elem.click(function (){
// do stuff ...
}现在如何使用函数调用此事件?
elem在elem.events['2'].f中有这个单击事件,但当我调用它时,会返回undefined is not a function
发布于 2014-12-11 19:31:09
好的,就像这样简单:
allPaths[35].events[2].f.call(allPaths[35]);https://stackoverflow.com/questions/27421113
复制相似问题