-1
I’m doing an exercise where I have to create a list of items using HTML and a function to delete items from the list. The function must use the Submit input to delete the entire HTML item without deleting another item from the list. I created the list and the function, but it’s not working. Can you help me? Thank you.
<script>
const produto = document.querySelector(".produto");
//Função para excluir um item da lista
const excluirProduto =
("submit",
(event) => {
if (event.target.contains(".produto")) {
produto.innerHTML = ``;
}
});
</script>
<body>
<div class="listaDeItens">
<div class="produto">
<input type="submit" value="EXCLUIR" />
<p class="descricaoProduto">ITEM QUE DEVE SER EXCLUIDO</p>
</div>
<br />
<div class="produto">
<input type="submit" value="EXCLUIR" />
<p class="descricaoProduto">ITEM QUE DEVE SER EXCLUIDO</p>
</div>
</div>
I liked more! Thank you.
– user188554