是否可以在不对其进行评论的情况下使div隐藏?如果是这样,怎么样?
解决方法
你需要用CSS隐藏它:
div { /* this will hide all divs on the page */ display:none; }
如果它是具有某个类或id的特定div,则可以将其隐藏为:
<div class="div_class_name">Some Content</div>
CSS:
div.div_class_name { /* this will hide div with class div_class_name */ display:none; }
要么
<div id="div_id_name">Some Content</div>
CSS:
div#div_id_name { /* this will hide div with id div_id_name */ display:none; }
注意:您需要在< style type =“text / css”>< / style>之间包装CSS tyles。标签,示例:
<style type="text/css"> div#div_id_name { display:none; } </style>