2017-05-08 50 views
0

我有這個問題,我想評論的HTML代碼一整節,這部分代碼已經有裏面的一些意見。現在如果我要評論全款,我怎麼能做到這一點。 + /不要再工作了CTRL .....如何崇高,如果多條線路已經包含註釋有何評論?

<div class="meta"> 
    <hr> 
    <!-- some comments --> 
    <span class="meta_date"><i class="fa fa-calendar"></i> <strong>Date:</strong> 
    <a href="#">2016.05 - 2016.06</a></span> 
    <!-- some comments --> 
    <div class="clearfix"></div> 
</div> 

回答

0

您可以使用

<?/* html code */?> 

或者

<script>/* html code */</script> 
+0

感謝,

相關問題