标签: javascript mootools elements getelementsbytagname
我正在尝试将鼠标悬停事件附加到页面中图库的所有img元素(使用Mootools)。这很容易使用像
$$('img.mygalleryclass').addEvents({ mouseover: function(){ alert(id); } });
我的问题是,如何提醒$$'循环'中引用的元素的id? “alert(id)”每次都会返回一个错误,因为没有定义id。
谢谢!
答案 0 :(得分:-1)
将event参数传递给mouseover函数,然后获取id的{{1}}:
event
mouseover
id
target
Here's an example.