Cita:
Iniciado por Alexis88 ¿Pero se está ejecutando la petición asíncrona (Ajax)?
Si, y también hay respuesta ok del php.
Código Javascript
:
Ver originalGET http://val_telef.php?telefonos=123135435 200 OK 854ms
Tengo otro código y funciona perfectamente, pero no se como adaptarlo a este:
Código Javascript
:
Ver original$.ajax({
data: $("#frm_filtro").serialize()+ordenar,
type: "POST",
dataType: "json",
url: "ajax.php?action=listar",
beforeSend:function(){
$('.carga1').css('display','block');
$('.carga1').html("<img src='imagenes_menu/ajax-loader4.gif' align='center' /><br />Cargando...");
},
complete: function() {
$(".carga1").show();
$(".carga1").hide();
},
success: function(data){
var html_user ='' ;
if(data.length > 0){
$.each(data, function(i,item){
html_user += '<tr onclick="pulsar1(this, ' + *String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) *+ ');" ondblclick="pulsar(this, ' + String.fromCharCode(39) + item.id_aviso + String.fromCharCode(39) *+ ');" >';
html_user += '<td><input name="demo" type="checkbox" value="' + item.id_aviso + '"/></td>';
html_user += '<td>'+item.id_aviso+'</td>';
html_user += '<td>'+item.telefonos+'</td>';
html_user += '<td>'+item.name+' '+item.apellidos+'</td>';
html_user += '<td>'+item.calle+'</td>';
html_user += '<td>'+item.localidad+'</td>';
html_user += '<td>'+item.aparatos+'</td>';
html_user += '<td>'+item.marcas+'</td>';
html_user += '<td>'+item.facturacion+'</td>';
html_user += '</tr>';
});
}