由于客户要求,我无法使用 jquery。我正在使用下面的脚本来检查 div 是否为空,如果是则隐藏它。虽然不工作。有任何想法吗?
<style>
#top
{
padding: 0;
height: 120px;
width: 820px;
float: left;
background: #cccccc;
}
</style>
<script>
if( document.getElementById("top").innerHTML == "" )
{
document.getElementById("top").style.display='none';
}
</script>
<div id="top">
</div>