第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

循環(huán)使筆記應(yīng)用程序中的筆記數(shù)量加倍

循環(huán)使筆記應(yīng)用程序中的筆記數(shù)量加倍

不負相思意 2023-07-06 19:56:37
我正在做一個小項目來記筆記。每次我單擊“添加新注釋”時,都會添加注釋。單擊第二次或多次“添加”按鈕后,循環(huán)會不斷添加錯誤數(shù)量的注釋。首先是 1,然后是 3、6、10,依此類推。document.querySelector('#newNoteBtn').addEventListener('click', onNewNote);function onNewNote() { const title = document.querySelector('#noteTitle').value;const content = document.querySelector('#noteContent').value;const note = {    title: title,    content: content,    colour: '#ff1455',    pinned: false,    createDate: new Date()}notes.push(note);console.log(note);localStorage.setItem(lsNotesKey, JSON.stringify(notes));const notesFromLocalStorage = JSON.parse(localStorage.getItem(lsNotesKey));const convertedNotes = notesFromLocalStorage.map( note => {    note.createDate = new Date(note.createDate);    return note;});const notesContainer = document.querySelector('main');for (const note of convertedNotes) {    const htmlNote = document.createElement('section');    const htmlTitle = document.createElement('h1');    const htmlContent = document.createElement('p');    const htmlTime = document.createElement('time');    const htmlButton = document.createElement('button');    htmlNote.classList.add('note');    htmlTitle.innerHTML = note.title;    htmlContent.innerHTML = note.content;    htmlTime.innerHTML = note.createDate.toLocaleString();    htmlButton.innerHTML = 'remove';    htmlButton.addEventListener('click', removeNote);    htmlNote.appendChild(htmlTitle);    htmlNote.appendChild(htmlContent);    htmlNote.appendChild(htmlTime);    htmlNote.appendChild(htmlButton);    notesContainer.appendChild(htmlNote);}}
查看完整描述

2 回答

?
jeck貓

TA貢獻1909條經(jīng)驗 獲得超7個贊

您只是從不清理容器,而是在每次調(diào)用時添加整組節(jié)點。解決這個問題最簡單的方法是清理notesContainer:


// ...

const notesContainer = document.querySelector('main');

notesContainer.innerHTML = ''; // <-- this line cleans up your container.

for (const note of convertedNotes) {

    // ...

這不是最佳的。從性能角度來看,最好只添加新創(chuàng)建的注釋,但這應(yīng)該會突出這個問題。


查看完整回答
反對 回復(fù) 2023-07-06
?
江戶川亂折騰

TA貢獻1851條經(jīng)驗 獲得超5個贊

看起來您從未清除 noteContainer 的內(nèi)容:


// before the loop 

notesContainer.innerHtml = ""

祝你好運!


查看完整回答
反對 回復(fù) 2023-07-06
  • 2 回答
  • 0 關(guān)注
  • 187 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號