AS 3.0事件处理函数带参实现方法
Posted yangjiale
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS 3.0事件处理函数带参实现方法相关的知识,希望对你有一定的参考价值。
Flash AS 3.0事件处理函数带参实现方法
//要实现带参的事件处理函数
function tra(e:MouseEvent,i:int):void
trace("参数是:"+i);
//使用此中间函数实现
function EventUp(f:Function,i:int):Function
return function(e:Event)f.apply(null,[e].concat(i));
//使用方法
EventUp(tra,1);
以上是关于AS 3.0事件处理函数带参实现方法的主要内容,如果未能解决你的问题,请参考以下文章
addhandler,addressof 来实现事件与事件处理过程的动态绑定
react事件绑定的三种常见方式以及解决Cannot update during an existing state transition (such as within `render`). Ren