在一组元素上使用悬停功能:
$('.thumb-Image').hover(function () {
alert(this.x);
这在 Chrome 中运行良好,但 Firefox (22)...x 和 y 均为 0。
在一组元素上使用悬停功能:
$('.thumb-Image').hover(function () {
alert(this.x);
这在 Chrome 中运行良好,但 Firefox (22)...x 和 y 均为 0。
我意识到我不应该使用 this.x 和 this.y ..它也在 IE 中返回 undefined。
因此,我在这篇文章的底部使用了 Jens Fransden 的 getTop 和 getLeft 答案: Get the position of a div/span tag
这让我得到了我在 ff 和 ie 以及 Chrome 中所需要的东西