Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

dom - removing and then adding element with javaScript

When a button is clicked, I want to add an element to my DOM. But first, I want to remove the previous one I added (in the previos click). Inside the click handler I wrote:

document.getElementById("myId").remove();
var myP = document.createElement("p");
myP.setAttribute("id","myId");
myP.innerHTML = "asdf";
document.getElementById("myDiv").appendChild(myP); 

but it's not working, the "p" does not get added to the DOM.

note: I want to use only javaScript, and I want to use "remove()" and not innerHTML = "".


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I have tried your code and it works fine. Just create a new HTML file and use the following code, in order to test it. Maybe you are missing an id in the javascript code.

<!DOCTYPE html>
<html>
    <head>
        <script>
            function clickTest(){
                document.getElementById("myId").remove();
                var myP = document.createElement("p");
                myP.setAttribute("id","myId");
                myP.innerHTML = "asdf";
                document.getElementById("myDiv").appendChild(myP);
            }
        </script>
    </head>
    <body>
        <div id="myId" style="border:1px solid black;">
            TEST
        </div>
        <div id="myDiv" style="border:1px solid red;">
            TEST2
        </div>
        <br/>
        <button onclick="clickTest();">CLICK ME</button>
        
    </body>
</html>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...