如何通过在javascript中使用另一个类来隐藏任何html元素?

时间:2015-08-05 01:44:05

标签: javascript jquery html css

如何使用Javascript隐藏 hide_below_element 选择器下方的元素。

<div class"hide_below_element">asdfasdfasd</div>
<div><a> the element for hiding form hide_below_element selector</a> </div> 
<div><a>Another information no need to hide </a> </div> 

感谢您的支持。

1 个答案:

答案 0 :(得分:1)

我不太确定你想要完成什么,但是这个怎么样:

$('.hide_below_element').next().hide();