Metodo更改en jQuery

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Metodo更改en jQuery相关的知识,希望对你有一定的参考价值。

Select dinamico para el cambio de
  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>

以上是关于Metodo更改en jQuery的主要内容,如果未能解决你的问题,请参考以下文章

Visual Studio 2012-2019的130多个jQuery代码片段。

markdown 在WordPress中使用jQuery代码片段

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面

很实用的JQuery代码片段(转)

几个有用的JavaScript/jQuery代码片段(转)

几个非常实用的JQuery代码片段