📅  最后修改于: 2022-03-11 15:01:23.491000             🧑  作者: Mango
//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;