“Sembunyikan Elemen JS” Kode Jawaban

Sembunyikan Elemen JS

function showStuff(id, text, btn) {
    document.getElementById(id).style.display = 'block';
    // hide the lorem ipsum text
    document.getElementById(text).style.display = 'none';
    // hide the link
    btn.style.display = 'none';
}
Grieving Gecko

Sembunyikan Elemen JS

//hidden attribute
document.getElementById("the-element-id").hidden=true
document.getElementById("the-element-id").setAttribute("hidden",true)
//style attribute
document.getElementById("the-element-id").style.display="none"
FrostyAnimations126

JS Sembunyikan Div

//If you have jquery, you can use the following method:
$("#mydiv").hide(); //hides div.
$("#mydiv").show(); //shows div.
//If you don't have jquery...
//search up the following: html how to add jquery
Determined Programmer

Jawaban yang mirip dengan “Sembunyikan Elemen JS”

Pertanyaan yang mirip dengan “Sembunyikan Elemen JS”

Lebih banyak jawaban terkait untuk “Sembunyikan Elemen JS” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya