A voir également:
- Problème Javascript et iframe
- Telecharger javascript - Télécharger - Langages
- Node.js javascript runtime virus ✓ - Forum Virus
- Javascript echo ✓ - Forum PHP
- Iframe-inf - Forum Virus
- Erreur #125 javascript - Forum Mozilla Firefox
3 réponses
pour comuniquer avec une iframe tu doi procédé de cet manière:
html:
javascript:
voila
Pazz
html:
<iframe name="tonname" src="..."></iframe>
javascript:
window.document.tonname.tavar=x;
voila
Pazz
en faite je voudrai communiqué depuis cette iframe, pour agir sur une image sur la page source/principale...
salut,
oui il faut justement faire comme j'ai dit, je te fait un exemple
Javascript:
HTML principal:
html de la frame:
voila il te suffit d'adapter et le tour est joué
oui il faut justement faire comme j'ai dit, je te fait un exemple
Javascript:
var HeightImg=0; function communiqueFrame(){ HeightImg=window.document.Taframe.HeightImg; document.getElementById('IMG').style.height=HeightImg+"px"; setTimeout("communiqueFrame()",10); } function changeTail(H){ HeightImg=H; }
HTML principal:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="JS.js"></script> <title>frame_communique</title> </head> <body onload="communiqueFrame()"> <img src="wallpaperUMV.jpg" id="IMG" /> <iframe src="int.html" name="Taframe"></iframe> </body> </html>
html de la frame:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="JS.js"></script> <title>Document sans nom</title> </head> <body> <input type="text" onchange="changeTail(this.value)" /> </body> </html>
voila il te suffit d'adapter et le tour est joué