Latest web development tutorials

Properti HTML DOM innerHTML

Elemen Object Reference objek elemen


Definisi dan Penggunaan

innerHTML set properti atau mengembalikan awal dan akhir tag HTML antara baris tabel.

tatabahasa

HTMLElementObject.innerHTML=text


Dukungan Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Semua browser utama mendukung properti innerHTML


contoh

contoh

Mengubah teks, URL, dan tujuan link:

<html>
<head>
<script>
function changeLink()
{
document.getElementById('myAnchor').innerHTML="W3Cschool";
document.getElementById('myAnchor').href="http://www.w3cschool.cc";
document.getElementById('myAnchor').target="_blank";
}
</script>
</head>
<body>

<a id="myAnchor" href="http://www.microsoft.com">Microsoft</a>
<input type="button" onclick="changeLink()" value="Change link">

</body>
</html>

Coba »


Elemen Object Reference objek elemen