gpt4 book ai didi

javascript - 从对象数组中删除 onClick 元素

转载 作者:行者123 更新时间:2023-12-03 01:47:42 24 4
gpt4 key购买 nike

我正在“odin 项目”网站上进行图书馆项目,但在完成它时遇到了困难。我的想法是访问“库”对象数组中的卡片特定索引,但我在这样做时遇到了麻烦。我的想法是有一个函数,可以从数组中的位置(例如其索引)创建某种类型的 id,并将其用作删除按钮的访问权限。有什么建议么?我很感激你在这里度过的时光是我的codepen link

    //constructor to add a book to
function Book(title, author, pages) {
this.title = title;
this.author = author;
this.pages = pages;
}

//array of books
const library = [];



//hides and unhides forms
const hide = () => {
var form = document.querySelector("#hide");
if (form.style.display === "none") {
form.style.cssText =
"display: block; display: flex; justify-content: center; margin-bottom: 150px";
} else {
form.style.display = "none";
}
};





//creates form, takes input,creates card, resets and runs hide function when done
const addBookCard = () => {
const bookName = document.querySelector('input[name="bookName"]').value;
const authorName = document.querySelector('input[name="authorName"]').value;
const numPages = document.querySelector('input[name="numPages"]').value;
library.push(new Book(bookName, authorName, numPages));



//just stating variables used within my function
const container = document.querySelector(".flex-row");
const createCard = document.createElement("div");
const divTitle = document.createElement("p");
const divAuthor = document.createElement("p");
const divPages = document.createElement("p");
const deleteBtn = document.createElement("button");


//using a class from my css file
createCard.classList.add("card");
createCard.setAttribute("id","id_num")
deleteBtn.setAttribute("onclick", "remove()")
deleteBtn.setAttribute('id','delBtn')

//geting all info from library
divTitle.textContent = "Title: " + bookName
divAuthor.textContent = "Author: " + authorName
divPages.textContent = "Number of Pages: " + numPages
deleteBtn.textContent = "Delete This Book";

//adding it all to my html
container.appendChild(createCard);
createCard.appendChild(divTitle);
createCard.appendChild(divAuthor);
createCard.appendChild(divPages);
createCard.appendChild(deleteBtn);

document.getElementById("formReset").reset();
hide()
return false
};


var btn = document.querySelector('#newCard');
btn.onclick = addBookCard;

最佳答案

您可以将 library 声明从 const 更改为 let

然后您可以将书籍与其对应的 deleteBtn 一起推送,这样您就可以轻松删除与点击的 deleteBtn 对应的条目

library.push([new Book(bookName, authorName, numPages), deleteBtn]);

然后您可以像这样在 deleteBtn 上添加事件监听器

deleteBtn.addEventListener('click', event => {
event.target.parentNode.remove();
library = library.filter(v => v[1] !== event.target);
});

第一行从 DOM 中删除元素,第二行创建新的库数组,但不包含删除的条目。

function Book(title, author, pages) {
this.title = title;
this.author = author;
this.pages = pages;
}

//array of books
let library = [];

//hides and unhides forms
const hide = () => {
var form = document.querySelector("#hide");
if (form.style.display === "none") {
form.style.cssText =
"display: block; display: flex; justify-content: center; margin-bottom: 150px";
} else {
form.style.display = "none";
}
};



//creates form, takes input,creates card, resets and runs hide function when done
const addBookCard = () => {
const bookName = document.querySelector('input[name="bookName"]').value;
const authorName = document.querySelector('input[name="authorName"]').value;
const numPages = document.querySelector('input[name="numPages"]').value;

//just stating variables used within my function
const container = document.querySelector(".flex-row");
const createCard = document.createElement("div");
const divTitle = document.createElement("p");
const divAuthor = document.createElement("p");
const divPages = document.createElement("p");
const deleteBtn = document.createElement("button");

library.push([new Book(bookName, authorName, numPages), deleteBtn]);

deleteBtn.addEventListener('click', event => {
event.target.parentNode.remove();
library = library.filter(v => v[1] !== event.target);
});

//using a class from my css file
createCard.classList.add("card");
createCard.setAttribute("id","id_num")
deleteBtn.setAttribute('id','delBtn')

//geting all info from library
divTitle.textContent = "Title: " + bookName
divAuthor.textContent = "Author: " + authorName
divPages.textContent = "Number of Pages: " + numPages
deleteBtn.textContent = "Delete This Book";

//adding it all to my html
container.appendChild(createCard);
createCard.appendChild(divTitle);
createCard.appendChild(divAuthor);
createCard.appendChild(divPages);
createCard.appendChild(deleteBtn);

document.getElementById("formReset").reset();
hide()
return false
};


var btn = document.querySelector('#newCard');
btn.onclick = addBookCard;



function hello (){
for (var i = 0; i < library.length ;i++) {
console.log(library[i]);
}
}
body {
margin: 0 auto;
width: 960px;
//background: cyan;
}

.flex-row {
display: flex;
flex-wrap: wrap;
}

.flex-column {
display: flex;
flex-direction: column;
}

.flex-row-form {
display: flex;
justify-content: center;
}
.flex-column-form {
display: flex;
flex-direction: column;
background: purple;
width: 45%;
padding: 20px;
border-radius: 5px;
border: 2px solid black;
color: white;
font-weight: 300;
font-size: 24px;
}

.card {
width: 33.33%;
text-align: center;
height: 200px;
border: 1px solid black;
padding: 20px;
margin: 10px;
border-radius: 10px;
}

.text {
padding-bottom: 20px;
font-weight: 300;
font-size: 20px;
}

p {
font-size: 20px;
font-weight: 400;
}

#newBook {
margin: 30px;
padding: 10px 20px;
cursor: pointer;
font-size: 16px;
color: #dff;
border-radius: 5px;
background: black;
}

#delBtn{
padding:10px;
border-radius:5px;
background:red;
color:white;
font-size:14px;
cursor: pointer;
}
<div id="display"></div>

<button id="newBook" onclick="hide()">New Book</button>

<div class="flex-row-form" id="hide" style= "display:none">
<form class="flex-column-form" id="formReset">
Book Name: <input type="text" name="bookName" value="Book Name" id="title"><br>
Author Name: <input type="text" name="authorName" value="Author Name " id="author"<br>
Number of Pages: <input type="text" name="numPages" value="# of Pages" id="pages" ><br>
<button id="newCard"> Add Book to Library</button>
</form>
</div>

<div class="flex-row">

</div>

我已经删除了这一行

deleteBtn.setAttribute("onclick", "remove()")

你不再需要它了,因为我已经为该按钮添加了事件监听器,并且它抛出了一个错误,因为你没有在你的代码中定义remove函数代码。

关于javascript - 从对象数组中删除 onClick 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50560326/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com