我有一些具有唯一ID和同一个类mbox
的div。这些div拥有一些信息。在每个div的底部,我有一个与所有div removeme
相同类的div。
当我点击课程removeme
的div来淡出课程mbox
的div时,怎么可能?但只有mbox
而不是旁边的另一个
我的Html:
<style>
.mbox{
width:300px;
height:280px;
float:left;
margin-left:5px;
margin-right:10px;
margin-bottom:10px;
background-color: #E0E0E0;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border:1px solid #CACACA;
}
.removeme{
width:200px; height:45px; float:left; background-color: #F00;
}
.title{
width:290px;
float:left;
margin-left:5px;
margin-top:5px;
text-align:center;
color:#333;
font-family:Verdana, Geneva, sans-serif;
font-size:24px;
font-weight:bold;
}
.photoholder{
width:200px;
height:150px;
float:left;
margin-left:50px;
margin-top:8px;
background-color:#FFF;
}
.imgclass{
float:left;
margin-left:10px;
margin-top:5px;
}
</style>
<div class="mbox" id="1">
<div class="title">Hello Box</div>
<div class="photoholder">
<img class="imgclass" src="http://whomurderedrobertwone.com/wp-content/uploads/2010/06/BigStarlitSky-300x250.jpg" width="180" height="140">
</div>
<div style="width:200px; height:45px; float:left; margin-top:12px; margin-left:50px; cursor:pointer;">
<div class="removeme"></div>
</div>
</div>
<div class="mbox" id="2">
<div class="title">Hello Box</div>
<div class="photoholder">
<img class="imgclass" src="http://whomurderedrobertwone.com/wp-content/uploads/2010/06/BigStarlitSky-300x250.jpg" width="180" height="140">
</div>
<div style="width:200px; height:45px; float:left; margin-top:12px; margin-left:50px; cursor:pointer;">
<div class="removeme"></div>
</div>
</div>
<script type="text/javascript">
$('.removeme').click(function () {
$(this).fadeOut("fast");
});
</script>
查看我的演示:http://jsfiddle.net/fWtm6/9/
答案 0 :(得分:2)
您可以使用.parent()
获取父元素(在这种情况下,您需要2才能获得父元素.mbox
$('.removeme').click(function () {
$(this).parent().parent().fadeOut();
});
编辑:在第二次查看jQuery API .parents()
之后会更好一点,因为它遍历所有父元素,因此您可以按类或ID显式过滤掉元素它离树有多远
$('.removeme').click(function () {
$(this).parents('.mbox').fadeOut();
});
答案 1 :(得分:0)
试试这个,希望它会回答你的问题..
$('.removeme').click(function () {
var str=$(this).parent().closest(".mbox");
$(str).fadeOut("fast");
});
答案 2 :(得分:0)
替换此行
$(this).fadeOut("fast");
用这个
$(this).closest('.mbox').fadeOut("fast");