📜  afficher un div qui etait cache en javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:23.491000             🧑  作者: Mango

代码示例1
//code html
Votre contenu est placé ici
//code Js //Pour masquer la division : document.getElementById(identifiant_de_ma_div).style.display = none; ///Pour afficher la division : document.getElementById(identifiant_de_ma_div).style.display = block;