Mengatur Nama Class HTML Menggunakan className DOM
- Mengembalikan properti className: HTMLElementObject.className;
- Mengatur properti className: HTMLElementObject.className = class;
Contoh: mengatur class untuk elemen <div>.
<!DOCTYPE html>
<html>
<head>
<title>
Properti className DOM HTML
</title>
<style>
.do_style
{
width: 600px;
height: 100px;
background-color: lightgreen;
text-align: center;
font-size: 25px;
color: green;
margin-bottom: 10px;}
</style>
</head>
<body>
<p>
Klik tombol untuk mengatur
sebuah class div.
</p>
<div id="div1">
Blog Elfan
</div>
<button
onclick="myFunction()">
Try it
</button>
<script>
function myFunction()
{
document.getElementById("div1").className =
"do_style";
}
</script>
</body>
</html>
Klik tombol untuk mengatur sebuah class div.
Penjelasan: class untuk elemen < div> ditetapkan dengan sebuah nilai menggunakan properti className.
<!DOCTYPE html>
<html>
<head>
<title>
Properti className DOM HTML
</title>
<style>
.do_style
{
width: 600px;
height: 100px;
background-color: lightgreen;
text-align: center;
font-size: 25px;
color: green;
margin-bottom: 10px;}
</style>
</head>
<body>
<p>
Klik tombol untuk
mengatur class div.
</p>
<div id="div1">
Blog Elfan
</div>
<button
onclick="myFunction()">
Try it
</button>
<script>
function myFunction()
{
document.getElementById("div1").className =
"do_style";
}
</script>
</body>
</html>
Klik tombol untuk mengatur class div.
Contoh: melakukan overwrites pada nama class yang sudah ada.
<!DOCTYPE html>
<html>
<head>
<title>
Properti className DOM HTML
</title>
<style>
.oldstyle
{
width: 300px;
height: 50px;
background-color: lightgreen;
color: green;
margin-bottom: 10px;}
.newstyle
{
width: 400px;
height: 100px;
background-color: white;
text-align: center;
font-size: 25px;
color: green;
margin-bottom: 10px;}
</style>
</head>
<body>
<p>
Klik tombol untuk mengubah
nilai dari class atribut
div ke "newstyle".
</p>
<div
id="div1"
class="oldstyle">
Blog Elfan
</div>
<button onclick="myFunction()">
Try it
</button>
<script>
function myFunction()
{
document.getElementById("div1").className =
"newstyle";
}
</script>
</body>
</html>
Klik tombol untuk mengubah nilai dari class atribut div ke "newstyle".
- Cara Penggunaan Properti clientWidth DOM pada HTML
- 2 Contoh Penggunaan Method cloneNode() DOM pada HTML
- 2 Contoh Penggunaan Method compareDocumentPosition() DOM pada HTML
- Cara Penggunaan Method contains() DOM pada HTML
- Cara Penggunaan Properti dir DOM pada HTML
- Cara Penggunaan Method exitFullscreen() DOM pada HTML
- 2 Contoh Penggunaan Properti firstChild DOM pada HTML
5 komentar untuk "Mengatur Nama Class HTML Menggunakan className DOM"
Hubungi admin melalui Wa : +62-896-2414-6106
Respon komentar 7 x 24 jam, mohon bersabar jika komentar tidak langsung dipublikasi atau mendapatkan balasan secara langsung.
Bantu admin meningkatkan kualitas blog dengan melaporkan berbagai permasalahan seperti typo, link bermasalah, dan lain sebagainya melalui kolom komentar.
- Ikatlah Ilmu dengan Memostingkannya -
- Big things start from small things -
Jenis browser apa saja yang dapat digunakan untuk mengaktifkan properti className DOM pada HTML?
BalasHapusBerikut adalah jenis browser yang dapat digunakan untuk mengaktifkan className DOM pada HTML:
Hapus1. Google Chrome
2. Internet Explorer
3. Firefox
4. Opera
5. Safari
Apa fungsi properti className DOM pada HTML?
BalasHapusProperti className DOM pada HTML digunakan untuk menetapkan atau mengembalikan elemen class atribut.
HapusProperti className DOM HTML digunakan untuk menetapkan class css ke elemen HTML.
Hapus