我使用这个table-dragger plugin。
我想将排序后的数据表保存在localStorage上,然后用户重新加载页面时,我想为他保存排序表。
我有代码:
function copyToClipboard(text) {
var $temp = $("<input>");
$("body").append($temp);
$temp.val(text).select();
document.execCommand("copy");
$temp.remove();
}
我不知道如何正确保存有序数据表。重新加载页面后,所有更改都丢失了。