我想將一些元素存儲到一個數組中,我需要這個元素的位置。如何將元素的順序存儲到數組中
下面的例子顯示了一個簡單的例子,我想存儲(注意,id會隨着每次頁面加載而改變)。
我想存儲其所有的孩子每個箱父類(DIV)的位置
UPDATE:
主要的想法是讓結構(各元素的這樣的位置)到一個數組/字符串,我認爲它叫做序列化。盒的父類是用於排序塊/小部件(盒1,盒2等)類似的例子容器 可以找到這裏http://james.padolsey.com/demo/tut-inettuts-with-cookies/
基本示例
<div id="main-wrapper">
<div class="box-parent">
<div id="box-1"> content here </div>
<div id="box-2"> content here </div>
<div id="box-3"> content here </div>
<div id="box-4"> content here </div>
<div id="box-5"> content here </div>
</div>
<div class="box-parent">
<div id="box-6"> content here </div>
<div id="box-7"> content here </div>
<div id="box-8"> content here </div>
<div id="box-9"> content here </div>
<div id="box-10"> content here </div>
</div>
<div class="box-parent">
<div id="box-11"> content here </div>
<div id="box-12"> content here </div>
<div id="box-13"> content here </div>
<div id="box-14"> content here </div>
<div id="box-15"> content here </div>
</div>
</div>
我似乎無法理解你的問題 – elclanrs 2012-02-19 21:33:36
你提出的輸出不是一個數組,它是一個對象 - 和一個無效的對象,因爲你不能使用相同的屬性名稱兩次(或者如果您執行第二個屬性將覆蓋第一個屬性),因此您不能在同一個對象中存儲兩個不同的「box-parent」屬性。也許「main-wrapper」應該是一個實際的數組(方括號'[]'),每個元素都是「box-parent」? – nnnnnn 2012-02-19 22:43:28