在下面的 html 代码中,其中一个 div 是隐藏的,而另一个不是。我的问题是
1.如何选择具有隐藏属性的多个类名的任何元素
2.html隐藏或显示时如何获取内部html
我试过,
$('.middle-cont,.float-lft,.content-height').html()
$('.middle-cont,.float-lft,.content-height:hidden').html() //will this work
html
<div class="middle-cont float-lft content-height">
some html
</div>
<div class="middle-cont float-lft content-height" > //This div is hidden
some html123
</div>