Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/03/2015, 18:23
__SDP__
 
Fecha de Ingreso: agosto-2010
Ubicación: santiago, CHILE
Mensajes: 564
Antigüedad: 14 años, 4 meses
Puntos: 9
Respuesta: Seleccionar texto en un div y subrayar

aqui hay algo que encontre que te puede iluminar.

Código HTML:
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>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>ejemplo</title>
  5. <script> function sel(inicio,fin){ input=document.getElementById('area'); if(typeof document.selection != 'undefined' && document.selection){ tex=input.value; input.value=''; input.focus(); var str = document.selection.createRange(); input.value=tex; str.move('character', inicio); str.moveEnd("character", fin-inicio); str.select(); } else if(typeof input.selectionStart != 'undefined'){ input.setSelectionRange(inicio,fin); input.focus(); } }
  6. </script>
  7. </head>
  8. <body>
  9. <form id="form1" name="form1" method="post" action="">
  10. <textarea name="area" cols="60" rows="10" id="area">esta es una prueba</textarea> <input type="button" name="Submit" value="seleccionar" onclick="sel(8,11)" />
  11. </form>
  12. </body>
  13. </html>