1
我有這樣一個4x3的格網箱:HTML如何自動創建/以編程方式創建div?
<div id="MainDiv" style="border:1px solid black; width:122px; height:160px;">
<div id="Column1" style="float:left">
<div id="sq1" style="width:40px; height:40px;">
</div>
<div id="sq2" style="width:40px; height:40px;">
</div>
<div id="sq3" style="width:40px; height:40px;">
</div>
<div id="sq4" style="width:40px; height:40px;">
</div>
</div>
<div id="Column2" style="float:left">
<div id="sq5" style="width:40px; height:40px;">
</div>
<div id="sq6" style="width:40px; height:40px;">
</div>
<div id="sq7" style="width:40px; height:40px;">
</div>
<div id="sq8" style="width:40px; height:40px;">
</div>
</div>
<div id="Column3" style="float:left">
<div id="sq9" style="width:40px; height:40px;">
</div>
<div id="sq10" style="width:40px; height:40px;">
</div>
<div id="sq11" style="width:40px; height:40px;">
</div>
<div id="sq12" style="width:40px; height:40px;">
</div>
</div>
我怎樣寫的代碼自動完成整個過程只需幾行?
所以你想要一個行* col div盒? – Marcus
你使用什麼語言? – Marcus
你想要什麼,一個生成代碼的工具,以便您可以複製或者在頁面加載時生成代碼的函數? – Marcus