如何将表信息保存到localStorage?

时间:2018-05-31 18:01:19

标签: jquery html-table storage

这就是我的问题"创造"使用jQuery的新表但是当我刷新它时显然会消失。所以我当然去了localStorage。出于某种原因,我遇到了麻烦。我不仅需要将表中的信息保存到localStorage,而且信息也是可编辑的,因此无论何时编辑它还需要保存。我该怎么办呢?这是代码。如果您需要更多信息或有疑问,我会快速回答。(重要的代码在while循环中)

$(document).ready(function() {

    $('.button1').click(function() {
        $('.inventory').html("");
    });

    $('.addItem').click(function() {
        while (true) {
            let partNum = prompt("What is the part number?");
            let quantity = prompt("What is the quantity of this part?");
            let description = prompt("Describe this part(optional)");
            $("table").find('tbody').append( `<tr><td contenteditable='true'>${partNum}</td><td contenteditable='true'>${quantity}</td><td contenteditable='true'>${description}</td></tr>` );
            break;
        }
    });

});

0 个答案:

没有答案