您好,我以以下 HTML 结构为例:
<body>
Testing hiding DIVs
<div class="content-1">
<h2>Hello - this is div 1</h2>
<div class="content-2">
<h2>Hello - this os div 2</h2>
</body>
只有当 div“content-1” 包含或包含内容时,我才想隐藏 div“content-2”。
使用 jquery 实现这一目标的最简单方法是什么?
非常感谢您的任何建议...