0

请任何人都可以在这个简单的脚本中帮助我...

<script>
$(".offr-list-desc-anch").hide();
$(function () {
    $(".grey-shadow").hover(function () {
        $(".offr-list-desc-anch").stop().fadeIn()
    }, function () {
        $(".offr-list-desc-anch").stop().fadeOut();
    });
});
</script>

我用它来淡入和淡出我的链接,但是当我悬停一个链接时,效果会发生在所有其他链接上......我只想对悬停的链接生效..

这是我的 HTML

<a href="#" class="offr-list-itm grey-shadow">
    <div class="offr-list-desc-txt"> 
    <img width="223" height="159" border="0" class="grey-shadow" src="images/sportive_suit.jpg">
      <div class="offr-list-desc-anch" >
        <div class="offr-list-item-detls">
          <div class="price"><span class="price-value">200</span><span>LE</span></div>
          <div class="discount-box">
            <div class="off"><span class="price-detalis-tit">Discount</span> <span class="save-currency">50 <span class="save-currency-symbol">%</span> </span> </div>
            <div class="save"> <span class="price-detalis-tit">You Save</span> <span class="save-currency"> 200 <span class="save-currency-symbol"> LE </span></span> </div>
          </div>
        </div>
        <p class="more-offers-unitit"> L.E 200 Instead of L.E 400 for 1 Month of Self Defense Classes from Circle Aikido</p>
      </div>
   <script>
  $(".offr-list-desc-anch").hide();
  $(function(){
      $(".grey-shadow").stop().hover(function(){

          $(".offr-list-desc-anch").fadeIn()
          },function(){$(".offr-list-desc-anch").stop().fadeOut();
              });

              return false;

      });
  </script>
 </div>
</a>
4

2 回答 2

1

您需要指定特定于当前悬停元素的目标,以便它不会影响其他元素。所以试试这个方法:

$(function () {
    $(".offr-list-desc-anch").hide();
    $(".grey-shadow").hover(function () {
        $(this).find(".offr-list-desc-anch").stop().fadeToggle(); //find the element specific to hovered anchor tag element
    });
});

小提琴

也不要将脚本包装在 div 元素中,您不需要这样做。

于 2013-09-16T20:20:36.120 回答
0

尝试

$(".grey-shadow").hover(function () {
  $(this).next().stop().fadeIn()
}, function () {
  $(this).next().stop().fadeOut();
});

这个想法是使用悬停点作为参考而不是整个 DOM。

于 2013-09-16T20:25:20.867 回答