“JavaScript erstellen ul li aus Array” Code-Antworten

JavaScript erstellen ul li aus Array

var options = [
        set0 = ['Option 1','Option 2'],
        set1 = ['First Option','Second Option','Third Option']
    ];

function makeUL(array) {
    // Create the list element:
    var list = document.createElement('ul');

    for (var i = 0; i < array.length; i++) {
        // Create the list item:
        var item = document.createElement('li');

        // Set its contents:
        item.appendChild(document.createTextNode(array[i]));

        // Add it to the list:
        list.appendChild(item);
    }

    // Finally, return the constructed list:
    return list;
}

// Add the contents of options[0] to #foo:
document.getElementById('foo').appendChild(makeUL(options[0]));
Milos Nedeljkovic

Erstellen Sie li in ul js

function function1() {
  var ul = document.getElementById("list");
  var li = document.createElement("li");
  li.appendChild(document.createTextNode("Four"));
  ul.appendChild(li);
}
Mysterious Girl

Ähnliche Antworten wie “JavaScript erstellen ul li aus Array”

Fragen ähnlich wie “JavaScript erstellen ul li aus Array”

Weitere verwandte Antworten zu “JavaScript erstellen ul li aus Array” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen