Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/09/2011, 16:50
Avatar de KoswiDigital
KoswiDigital
 
Fecha de Ingreso: abril-2011
Ubicación: Galicia - España
Mensajes: 220
Antigüedad: 13 años, 7 meses
Puntos: 37
Respuesta: Convertir texto a input.

Hola, te dejo un ejemplo sencillísimo hecho al vuelo en jQuery (no es muy usable, pero como ejemplo sirve):

Código Javascript:
Ver original
  1. $(document).ready(function()
  2. {
  3.   $('.mispan').click(function()
  4.   {
  5.     var data = $(this).text();
  6.     $(this).remove();
  7.        
  8.     $('<input class="miedit" type="text" value="'+data+'" />').appendTo('#midiv');
  9.   });
  10. });

Código HTML:
Ver original
  1. <div id="midiv">
  2.   <span class="mispan">texto 1</span>
  3. </div>


Un saludo.
__________________
http://www.koswidigital.com - Diseño web, Programación web, Fotografía profesional, Retoque digital.