Contoh cara penggunaan append javascript:
<ul id="daftar">
<li>Teks 1</li>
<li>Teks 2</li>
</ul>
<button onclick="append()">Klik untuk tambah</button>
<script>
function append() {
var selector= document.createElement("LI");
var textselector = document.createTextNode("Teks tambahannya");
selector.appendChild(textselector );
document.getElementById("daftar").appendChild(selector);
}
</script>
<li>Teks 1</li>
<li>Teks 2</li>
</ul>
<button onclick="append()">Klik untuk tambah</button>
<script>
function append() {
var selector= document.createElement("LI");
var textselector = document.createTextNode("Teks tambahannya");
selector.appendChild(textselector );
document.getElementById("daftar").appendChild(selector);
}
</script>
Sekian, terimakasih atas kunjungannya.
Salam,
EmoticonEmoticon