知道在ajax响应之后如何在mootools中绑定mouseover
个事件。
尝试如下
onSuccess : function(responseTree, responseElements, responseHTML, responseJavaScript) {
Elements.from(responseHTML).inject($('load-content'));
$('load-content').fireEvent('mouseover');
}
但它不会起作用
答案 0 :(得分:0)
尝试以下方法:
$('load-content').addEvent('mouseover', function(e){
// your code
});