いくつかの要素を配列に格納する必要があります。これは各要素の位置に必要です。要素の順序を配列に格納する方法
以下の例は、私が何を保存したいかの簡単な例を示しています(すべてのページロードでIDが変わることに注意してください)。
は、私はそのすべての子を持つ各ボックスの親クラス(DIV)の位置を保存する
UPDATE:
主なアイデアはに構造(すべての要素のような位置)を取得することです配列/文字列、私はそれがシリアル化と呼ばれると思います。ボックスの親クラスがここで見つけることができます並べ替え可能なブロック/ウィジェット(箱-1、箱-2など)同様の例のコンテナ あるhttp://james.padolsey.com/demo/tut-inettuts-with-cookies/
Basicの例
<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
あなたの提案出力が配列ではない、それはオブジェクトです - あなたが使用できないため、無効なオブジェクト同じプロパティ名を2回(または2回目は最初のものを上書きします)、同じオブジェクトに2つの異なる "ボックス - 親"プロパティを保存することはできません。おそらく、 "main-wrapper"は実際の配列(角括弧 '[]')でなければならず、各要素は "box-parent"でしょうか? – nnnnnn