如何在ajax响应之后绑定mootools中的事件

时间:2011-07-27 09:20:48

标签: javascript-events mootools

知道在ajax响应之后如何在mootools中绑定mouseover个事件。

尝试如下

onSuccess : function(responseTree, responseElements, responseHTML, responseJavaScript) {

              Elements.from(responseHTML).inject($('load-content'));

            $('load-content').fireEvent('mouseover');

            }

但它不会起作用

1 个答案:

答案 0 :(得分:0)

尝试以下方法:

$('load-content').addEvent('mouseover', function(e){
    // your code
});