0
尋找一些幫助在這裏得到.parent()
和.find()
爲我工作...我有一系列的DIV在頁面上根據下面的代碼塊。我想要的是,當用戶滾動.linkerBtn
href
,我添加了一個新的類到頂級父threeCol
科稱爲newsFeedItemHovered
- 請幫助!查找父div和添加類
<div class="threeCol">
<div class="threeColInner">
<div class="feedItemWrapper newsFeedItem noBottom">
<h3>
<a title="News article 3" href="news-and-events/latest-news/news-article-3.html">News article 3</a>
</h3>
<p class="ItemStamp">03/09/2015</p>
<p>News post summary text... Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer euismod euismod euismod. Quisque cursus quam sem, ac fermentum quam molestie in.</p>
<p class="noBottom">
<a class="linkerBtn inline small" title="Read more about News article 3" href="news-and-events/latest-news/news-article-3.html">Read more</a>
</p>
</div>
</div>
</div>
等你的鼠標事件做這樣的事情:$(本).closest( 'DIV')addClass( '類名'); –
$(this).parents('。threeCol')。addClass('...');'也可以。 –