Metodo Change en jQuery


/ Published in: jQuery
Save to your folder(s)

Select dinamico para el cambio de


Copy this code and paste it in your HTML
  1. // HEADER
  2. $("#tipo_cambio").change(function () {
  3. var opt = "";
  4. var imp = "";
  5.  
  6. $("#tipo_cambio option:selected").each(function () {
  7. opt = $(this).val();
  8. if(opt == 0){
  9. imp = "<br /><b>SELECCIONA EL TIPO DE CAMBIO</b>";
  10. }
  11. if(opt == 1){
  12. imp += "<fieldset><legend>Cambio de banner</legend><table><tr><td><b>Selecciona el banner</b></td><td>:<input type='file' name='banner_global' id='banner_global' /></td></tr>";
  13. imp += "<tr><td><b>Ingresa el link del banner</b></td><td>:<input type='text' name='link_banner_global' id='link_banner_global' /></td></tr></table></fieldset>";
  14. }
  15. if(opt == 2){
  16. imp = "<fieldset><legend>Cambio de Subject</legend><b>Ingresa el subject :</b><input type='text' name='subject_news_global' id='subject_news_global' /></fieldset>";
  17. }
  18.  
  19. });
  20.  
  21. $("#describe").html(imp);
  22. })
  23. .change();
  24.  
  25.  
  26. // TEMPLATE
  27. <label>Selecciona Tipo de cambio: </label>
  28. <select name="tipo_cambio" id="tipo_cambio" onchange="mostrar(this.value);">
  29. <option value="0">[Selecciona tipo de cambio]..</option>
  30. <option value="1">Cambio Banner newsletter.</option>
  31. <option value="2">Subject de Varios News.</option>
  32. </select>
  33.  
  34. <div id="describe"></div>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.