Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/11/2011, 15:45
Avatar de jor_0203
jor_0203
 
Fecha de Ingreso: octubre-2011
Ubicación: mexico
Mensajes: 760
Antigüedad: 13 años, 2 meses
Puntos: 8
como se puede escribir en un div para que funcione como formulario

estoy tratando de escribir adentro de un div y después mandarlo a otro div, pero desde internet como si fuera un input
pero cuando estoy en internet no puedo escribir
Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Documento sin t&iacute;tulo</title>
  6. <style type="text/css">
  7. <!--
  8. .a {
  9.     background-color: #00CCFF;
  10.     height: 300px;
  11.     width: 300px;
  12. }
  13. -->
  14. </style>
  15. <script type="text/javascript">
  16. function recibir_datos() {
  17. document.getElementById('recibe').innerHTML=document.getElementById('mandar').innerHTML;
  18. }
  19. </script>
  20. </head>
  21. <body>
  22.   <div id="mandar" class="a">escribe datos</div>
  23.   <p onclick="recibir_datos()"> este es un boton  </p>
  24. <div id="recibe"></div>
  25. </body>
  26. </html>

Última edición por jor_0203; 24/11/2011 a las 15:52