0

我质疑如何通过 jQuery 选择特定对象。以下情况:

<figure class="box col1">
    <img class="fade" src="first.jpg" style="background-image: url(second.jpg)" />
    <figcaption>
      <div class="cenfig">
         <p>
          <strong>Headline</strong>
          <em>Subheadline</em>
        </p>
    </div>
</figcaption>

一个文档中有几个数字。我想选择图中的 img 并在其上运行脚本。

问题:

是否可以在图形上使用鼠标悬停仅在该鼠标悬停图形内的 img 上运行函数?

检查这个以了解我的问题:http: //jsfiddle.net/NuL7A/1

谢谢!

4

1 回答 1

0

像这样

  $("figure img.fade").mouseover(function(){
    //...
    });
于 2013-05-30T19:52:05.967 回答