'这' Javascript中的选择器

时间:2015-09-29 17:05:53

标签: javascript jquery vb.net

我正在动态创建一个页面(在VB中),因此有许多具有相同类的元素。我需要单独制作这些动画,而不是作为一个组。我过去使用this选择器完成了此操作。但我现在似乎无法正常运作。

$(".img").on("mouseover", function () {
  $(".img").animate({
    right: '75px',
    speed: 'fast'
  });
});

1 个答案:

答案 0 :(得分:5)

将字符串选择器替换为this

$(".img").on("mouseover", function () {
  $(this).animate({
    right: '75px',
    speed: 'fast'
  });
});

在处理程序中,this将是鼠标悬停的特定.img实例