【发布时间】:2017-06-07 19:33:12
【问题描述】:
我目前正在编写一个简单的原生 JavaScript 待办事项应用程序。一切看起来都很好,但是在将数据保存到新的 localStorage 时,我做不到,我从未使用过 localStorage,我'阅读了很多文章,当我尝试简单的东西时它可以工作,但我无法让我的应用程序正常工作。我想在 REFRESH 上保存输入的数据,它不会消失,现在的样子……这是应用程序的链接
**** 我想用 VANILLA JAVASCRIPT 来做,而不是 JQUERY ****
所以基本上,如果用户做了几个待办事项,并且在刷新时,我希望一切都保持不变,就像在图像中一样。
HTML:
<body>
<div class="holder">
<div>
<input type="text" />
</div>
<button id="add">Add</button>
<div class="results"></div>
</div>
</body>
JS:
document.addEventListener('DOMContentLoaded',function(){
let holder = document.querySelector('.holder'),
addBtn = document.querySelector('#add'),
removeBtn = document.querySelector('#remove'),
resultBox = document.querySelector('.results');
let input = document.getElementsByTagName('input')[0];
function setAttributes(element,attrs){
for(let i in attrs){
element.setAttribute(i,attrs[i]);
}
}
setAttributes(input,{
'placeholder' : 'Enter To-Do',
'name' : 'todo'
});
function addtoBtn(){
addBtn.addEventListener('click',function(event){
if(input.value !== ''){
let openingDiv = '<div class="todo"><span>';
let closingDiv = '</span><button class="edit">Edit</button><button class="save">Save</button><button class="removeBtn">Remove</button></div>';
resultBox.innerHTML += openingDiv + input.value + closingDiv;
input.value = '';
event.preventDefault();
} else{
alert('Enter To-do!');
}
let innerBtn = document.querySelectorAll('.removeBtn');
let editBtn = document.querySelectorAll('.edit');
let saveBtn = document.querySelectorAll('.save');
for(let collection = 0 ; collection < saveBtn.length ; collection++){
saveBtn[collection].style.display = "none";
}
function removeToDo(){
this.parentNode.style.display = 'none';
}
for(let k = 0 ; k < innerBtn.length ; k++){
innerBtn[k].addEventListener('click',removeToDo);
}
function startContentEdit(){
this.previousSibling.contentEditable = true;
this.previousSibling.style.padding = "10px";
this.previousSibling.style.boxShadow = "0 0 15px #fff";
this.previousSibling.style.borderRadius = "10px";
this.previousSibling.style.transition = "all .4s";
this.style.display = "none";
for(let el = 0 ; el < saveBtn.length ; el++){
this.nextSibling.style.display = 'inline-block';
}
}
for(let j = 0 ; j < editBtn.length ; j++){
editBtn[j].addEventListener('click',startContentEdit);
}
function saveContentEdit(){
this.style.display = 'none';
for(let j = 0 ; j < editBtn.length ; j++){
this.previousSibling.style.display = "inline-block";
this.parentNode.firstElementChild.style.display = "block";
this.parentNode.firstElementChild.contentEditable = false;
this.parentNode.firstElementChild.style.padding = "0px";
this.parentNode.firstElementChild.style.boxShadow = "0 0 0";
}
}
for(let x = 0 ; x < saveBtn.length ; x++){
saveBtn[x].addEventListener('click',saveContentEdit);
}
});
}
addtoBtn();
});
正如我所说,我看到了很多文章,但我找不到任何解决方案的答案。 抱歉,这是我的第一个 javascript 应用程序,几乎所有东西都可以在其中运行 :D 我有点兴奋,所以我想让它完全正常运行。
简历:
是否可以使用 localStorage 或 sessionStorage 来保存新生成的
<div class="todo></div> 容器?
【问题讨论】:
-
存储 HTML 元素 而不是其背后的数据听起来是个坏主意。这是很多代码,对于堆栈溢出问题来说可能太多了。您能否更详细地阐明您遇到的问题,并显示与问题相关的代码?
标签: javascript html local-storage