sorry for my silly questions and bad explanation
Currently I’m learning JS and I couldn’t understand what went wrong.
I'm trying to make new
list when onlick the button, and I want to delete it when onclick the X
It does work in someways, but it only works when there are more than 1 of P tags. So it's impossible to remove everything which is submitted
var list = document.querySelector("#list");
var text = document.querySelector("#write");
var btn = document.querySelector("#submit");
btn.addEventListener("click", add);
function add(){
var newP = document.createElement("p");
var newUl = document.createElement("ul");
var newLi = document.createElement("li");
var newText = document.createTextNode(text.value);
var delbtn = document.createElement("span");
delbtn.setAttribute("class", "del")
var delText = document.createTextNode("X");
var delbtns = document.querySelectorAll(".del")
list.appendChild(newP);
newP.appendChild(newUl);
newUl.appendChild(newLi);
newLi.appendChild(newText);
newP.appendChild(delbtn);
delbtn.appendChild(delText);
text.value = ""
text.focus();
for (var i = 0; i < delbtns.length; i++){
delbtns[i].addEventListener("click", function () {
if(this.parentNode.parentNode)
this.parentNode.parentNode.removeChild(this.parentNode)
});
}
}
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<style>
p{
width: 80%;
}
.del{
border: 1px solid #999;
display: flex;
flex-basis: 200;
}
</style>
</head>
<body>
<h1>hello world</h1>
<form action="">
<input type="text" id="write" />
<input type="button" id="submit"/>
</form>
<div id="list"></div>
<script src="index.js"></script>
</body>
</html>
My approach would be don't fight the browser, dont loop too much. First of all drop the old school way of iterating through DOM to find the parent then trying to find the child then removing it.
There is simple way of doing this event delegation.
you are creating a node on the fly any ways. Good Job. just add onclick event listener to it and trigger
element.remove()
function. Yup thats new and right way of doing it.In my example I have replaced it with
this.parentElement.remove()
thus it removes the element from which the event took place.Once the node is created and event registered along with it, it is no longer your headache to figure it out.
Created a p element created span element for X innerHTMl of P element is updated with value of text field, after which span element is added as child. Then finally P element is added to the list div. When you click the X it removes the P element and everything with it.
Added note: its all native no library needed. Other than bunch of HTML there is not much of clunky JS code. keep it simple and use the power of browser and augment design along with it.