Ver Mensaje Individual
  #15 (permalink)  
Antiguo 13/06/2010, 06:22
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 10 meses
Puntos: 126
Respuesta: Poner un elemento de una forma en un confirm

Hola

Mira, esto es lo que se me ha ocurrido

Código Javascript:
Ver original
  1. <html>
  2.  
  3.  <head>
  4.  
  5.   <Title>DNC tool</Title>
  6.  
  7. <script type="text/javascript">
  8. var opcion = '';
  9. </script>
  10.  </head>
  11.  
  12. <body>
  13.    
  14. <form action="dnc_erase.cfm" method="post">
  15.   <select id="sel" onchange="opcion=this.options[this.selectedIndex].text;verification1();">
  16.      <option value="0">Select a partition</option>
  17. <cfoutput query="dncgetpartitions">
  18.     <option value="#librarypartitionid#">#NAME#</option>
  19. </cfoutput>
  20.   </select>
  21.  <div id="hiddentext" style="display: none;">
  22.   <textarea name="comments" id="txtOther" cols="40" rows="5">
  23. Enter the phone numbers here, separated by a comma.
  24. Example:
  25. 9182736450,6142478087,etc
  26.   </textarea><br>
  27.  
  28.  <input type="submit" value="Submit" OnClick="if(!confirm('Are you sure that you want to add these numbers to the DNC list for&nbsp;' + opcion)) return false;" />
  29.  
  30. </form>
  31.  
  32. <script language="JavaScript">
  33.    function verification1()
  34.  {
  35.    var sel = document.getElementById( 'sel' );
  36.    var hiddentext = document.getElementById( 'hiddentext' );
  37.    
  38.    if( sel.options[ sel.selectedIndex ].value != '0')
  39.    {
  40.      hiddentext.style.display = 'block';
  41.    }
  42.    else
  43.    {
  44.      hiddentext.style.display = 'none';
  45.    }
  46.  }  
  47.  </script>
  48.  
  49. </body>
  50.  
  51. </html>

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />