Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/02/2013, 11:19
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses
Puntos: 1567
Respuesta: como puedo obtener datos de un iframe

No sé , a ver si esto te va

index_iframes.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.  
  7. <script type="text/javascript">
  8. //<![CDATA[
  9. function recibe(valor){
  10. document.getElementById('guarda').innerHTML = valor;
  11.  
  12. }
  13. function responde(){
  14. alert("El valor del input texto en form.html es: " + document.getElementById('guarda').innerHTML);
  15. }
  16. //]]>
  17. </head>
  18. index
  19. <div id="guarda" style="display: none;"></div>
  20. <div>
  21. <iframe src='form.html' id="iframe_form" name="iframe_form"></iframe><br />
  22. <iframe src='boton.html' id="iframe_boton" name="iframe_boton"></iframe><br />
  23. </div>
  24. </body>
  25. </html>

form.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. </head>
  7. <form action="#">
  8. <input type="text" value="" id="texto" onkeyup="parent.recibe(this.value)" />
  9. </form>
  10. </body>
  11. </html>

boton.html
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. </head>
  7. <button onclick="parent.responde();">obtener valor input text en iframe form</button>
  8. </body>
  9. </html>

SAludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.