如何在单击后退按钮时恢复所选表:jQuery

时间:2015-10-29 21:02:23

标签: jquery html

摘要:我有 a.html 页面,其中包含添加按钮和表格。单击“添加”按钮时,会将行添加到表中。单击完成按钮后,它会收集行中的所有值并重定向到b.html。当用户点击 b.html 中的后退按钮时。它应该重定向到a.html并应该将所有行恢复到表中。

这里是 a.html

<div class="report">
    <div class="panel">
    <div>
    <button type="button" class="add btn btn-primary" data-toggle="tooltip" title="Add to configuration list.">
                        <i class="fa fa-plus"></i>
                        Add
                    </button>
                </div>

            <div class ="configuration-table panel-body">
                <table class="table table-striped table-bordered table-condensed">
                    <thead>
                        <tr>
                            <th>Remove</th>
                            <th>Layer</th>
                            <th>Display</th>
                            <th>Unit</th>
                            <th>Dataset</th>
                            <th>Ordering</th>
                        </tr>
                    </thead>
                    <tbody></tbody>
                </table>
            </div>
</div>

    <div class = "done">
    <input class="btn btn-success" formaction="{% url 'b.html' %}" formmethod="post" type="submit" value="Done"></input>
    </div>

这里是jquery for a.html

var arr = [];
$('.report')
        .on('click','.add', function(){
           $(this)
             .parents('.report')
             .find('.configuration-table tbody')
             .append(
              '<tr>'+                  
               '<td data-cell="value1">A</td>'+
               '<td data-cell="value2">B</td>'+
               '<td data-cell="value3">C</td>'+
               '</tr>'
                }
      });
.on('submit', '.done', function(){
 // collects all the values from the table columns for each row and sends to other page using form action 
});

问题:当用户点击 b.html 中的后退按钮时,如何从表中检索以前的选择。我正在使用python django 我在这里寻找逻辑。 感谢

0 个答案:

没有答案