“Dodaj przycisk, aby dodać element JavaScript” Kod odpowiedzi

przycisk Dodaj JavaScript do Div

// get the element you want to add the button to
var myDiv = document.getElementById("demo");

// create the button object and add the text to it
var button = document.createElement("BUTTON");
button.innerHTML = "Button";

// add the button to the div
myDiv.appendChild(button);
Rubahn Die U-Bahn

Dodaj przycisk, aby dodać element JavaScript


<script>
    function addItem(){
        var li = document.createElement("LI");  
        var input = document.getElementById("add");
        li.innerHTML = input.value;
        input.value = "";

        document.getElementById("faves").appendChild(li);
    }
</script>

<input type="button" id="btnAdd" value="Add" onclick="addItem()">

Nasty Newt

Dodaj przycisk, aby dodać element JavaScript

2






Different Dragonfly

Odpowiedzi podobne do “Dodaj przycisk, aby dodać element JavaScript”

Pytania podobne do “Dodaj przycisk, aby dodać element JavaScript”

Więcej pokrewnych odpowiedzi na “Dodaj przycisk, aby dodać element JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu