dojo中的on绑定事件问题

前端之家收集整理的这篇文章主要介绍了dojo中的on绑定事件问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天处理dojo中的事件绑定问题,使用的是on()方法

遇到的问题:怎么向on中的事件传递参数?

我的办法是:

on(dojo.byId('messageManagerSearchBtn'),'click',lang.hitch(this,messageManagerSearchBtnClick,u));

官方给的例子如下:
<button id="button1" class="clickMe">Click me</button>
<button id="button2" class="clickMeAlso">Click me also</button>
<button id="button3" class="clickMe">Click me too</button>
<button id="button4" class="clickMeAlso">Please click me</button>
<script>
require(["dojo/query","dojo/_base/lang","dojo/domReady!"],function(query,lang) {
 
        var myObject = {
            id: "myObject",onClick: function(evt){
                alert("The scope of this handler is " + this.id);
            }
        };
        query(".clickMe").on("click",myObject.onClick);
        query(".clickMeAlso").on("click",lang.hitch(myObject,"onClick"));
 
});
</script>
先写到这里,下班了,晚上再考虑考虑。 原文链接:https://www.f2er.com/dojo/291051.html

猜你在找的Dojo相关文章