我有一个显示图像的 ListView,单击它后我可以获得图像的索引,但是当我只将鼠标悬停在图像上时无法获得索引。
这就是我所在的位置:
<img onmouseover="ImageListHover(this, $(this));" id="#=ItemID#" src="../Images/CatalogImages/#= CheckForImagesURL(FilePreview) #" alt="#: ItemName # image" />
在 mouseover 事件上调用的函数是:
function ImageListHover(a, b) {
console.log("index from a is: " + a.index());
console.log("index from b is: " + b.index());
}
我正在传递 this 和 $(this) 以查看是否可以从其中任何一个中获取索引,但无济于事。
编辑
这是代码的链接,我不得不将它放在剑道道场上,因为我使用的是我修改过的示例。示例