1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>displays</title>
<style>
</style>
</head>
<body>
<button onclick="affichageLignes('C1dLigne',3);"> bascule affichage Lignes 1 à 3 </button>
<button onclick="affichageLignes('C1dLigne', 5);"> bascule affichage Lignes 1 à 5 </button>
<div id="C1dLigne1">Ligne 1</div>
<div id="C1dLigne2">Ligne 2</div>
<div id="C1dLigne3">Ligne 3</div>
<div id="C1dLigne4">Ligne 4</div>
<div id="C1dLigne5">Ligne 5</div>
<div id="C1dLigne6">Ligne 6</div>
<script>
function affichageLignes( Prefix, NbrLignes ) {
for (let i = 1; i <= NbrLignes; i++) {
let ref_ID_ligne_Style = document.getElementById( Prefix + i ).style;
ref_ID_ligne_Style.display = ( ref_ID_ligne_Style.display == 'none' ) ? 'block' : 'none';
}
}
</script>
</body>
</html> |