当前位置 : 主页 > 网页制作 > Dojo >

dojo小例子(15)给dojo on的事件处理函数传递自定义参数的两种方法

来源:互联网 收集:自由互联 发布时间:2021-06-15
var show = function() { // do some thing } var hide = function() { return function(e) { // do some thing } } // 1 on( target, "focus", lang.hitch(this, show, 参数1,参数2)); // 2 on( target, "blur", hide(参数1,参数2));
    var show = function() {
        // do some thing
    }
    var hide = function() {
        return function(e) {
            // do some thing
        }
    }
    // 1
    on( target, "focus", lang.hitch(this, show, 参数1,参数2));    
    // 2
    on( target, "blur", hide(参数1,参数2));
网友评论