Advertisement
pipook

Ajax jquery

Feb 16th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $.fn.cargarSelect = function(/*los parametros que vayas a usar*/){
  2.     /*
  3.     * Codigo, lo mas probable para validaciones de formulario
  4.     */
  5.     $.ajax({
  6.         beforeSend: function(){
  7.             //Puede ir algun load antes de que se inicie el request de ajax
  8.         },
  9.         data: datos,//Los datos que vayas a enviar a el php
  10.         type: 'POST',
  11.         url: 'pagina_que_genera_los_datos.php',
  12.         dataType: 'json',
  13.         success: function(dato){//dato debe ser una respuesta del php en el formato 'echo json_encode(array_con_los_datos);'
  14.             var selectStr = '<select name="name_del_select" id="id_del_select">';
  15.             for (var i = 0; i < dato.length; i++) {
  16.                 selectStr += '<option value="'+dato[i].value+'">'+dato[i].texto+'</option>';
  17.             }
  18.             selectStr += '</select>';
  19.  
  20.             $('#tag_donde_pones_el_select').html(selectStr);
  21.         }
  22.     });
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement