之后/之前的jQuery addClass

时间:2012-11-14 02:22:44

标签: javascript jquery

<div id="box"></div>
<div class="text"></div>?



$(document).ready(function () { 
$('#box').click(function () {
      $('.text').slideToggle('slow');
  });


});


#box{
height:40px;
width:100px;
background:red;
}

#box:hover{background:blue;}

#box:after{
content: "";
height: 10px;
position: absolute;
width: 0;
margin-top:40px;
margin-left:40px;
border: 10px solid transparent;
border-top-color: red;
}


#box:hover:after{

border-top-color: blue;
}

.text{

display:none;
height:40px;
width:100px;
background:#fd0;
margin-top:20px;
}

http://jsfiddle.net/zfQvD/16/

是否可以使用jQuery添加样式化的after箭头? 关闭text class时,请移除after箭头类 如果显示text class,则添加箭头? 我试过,但似乎不起作用

1 个答案:

答案 0 :(得分:2)

根据@elclanrs的评论,你不能用JS添加伪元素。但是,您可以做的是在CSS中声明它们仅在父元素具有特定类时显示,然后使用JS切换此类,如下所示:

#box.expanded:after {
 content:'';
 height: 10px;
 position: absolute;
 width: 0;
 margin-top:40px;
 margin-left:40px;
 border: 10px solid transparent;
 border-top-color: red;
}

您还必须在JS中添加一行,以便在单击框时添加此类:

$('#box').click(function () {
  $(this).toggleClass('expanded');
  $('.text').slideToggle('slow');
});

请参阅此处的示例:http://jsfiddle.net/zfQvD/17/