A voir également:
- Fonction JS changer valeur d'une autre page
- Changer dns - Guide
- Supprimer une page word - Guide
- Fonction si et - Guide
- Traduire une page - Guide
- Changer clavier qwerty en azerty - Guide
1 réponse
En fait je ne sait pas si je me suis bien exprimé car je suis débutant en javascript :
<!--
window.onload = function()
{
for(var i=1; i<10; i++)
{
var id = 'tableau' + i;
document.getElementById(id).style.display = "none";
}
}
function switchDiv(n)
{
// Identifiant du bloc à traiter
var id = 'tableau' + n;
// Récupération du statut courant
var sc = document.getElementById(id).style.display;
// Définition du nouveau statut
var ns = (sc == 'block') ? 'none' : 'block';
//on cache tout sauf le séléctioné
for(var i=1; i<10; i++)
{
var id2 = 'tableau' + i;
if (id != id2)
document.getElementById(id2).style.display = "none";
document.getElementById(id).style.display = ns;
}
}
-->
Je voudrais pourvoir passer la valeur de la fonction swichDiv(2) qui proviendrait d'une autre page.
<!--
window.onload = function()
{
for(var i=1; i<10; i++)
{
var id = 'tableau' + i;
document.getElementById(id).style.display = "none";
}
}
function switchDiv(n)
{
// Identifiant du bloc à traiter
var id = 'tableau' + n;
// Récupération du statut courant
var sc = document.getElementById(id).style.display;
// Définition du nouveau statut
var ns = (sc == 'block') ? 'none' : 'block';
//on cache tout sauf le séléctioné
for(var i=1; i<10; i++)
{
var id2 = 'tableau' + i;
if (id != id2)
document.getElementById(id2).style.display = "none";
document.getElementById(id).style.display = ns;
}
}
-->
Je voudrais pourvoir passer la valeur de la fonction swichDiv(2) qui proviendrait d'une autre page.