如何使用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>
感谢您的支持。
答案 0 :(得分:1)
我不太确定你想要完成什么,但是这个怎么样:
$('.hide_below_element').next().hide();