Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/09/2013, 23:21
cesa_r
 
Fecha de Ingreso: julio-2013
Mensajes: 158
Antigüedad: 11 años, 4 meses
Puntos: 6
Respuesta: Recibir valores desde ajax

Haber si resuelve tu problema:

Código PHP:
valor1= $("#Combobox1").val();

$.
ajax({
type'POST',
data'datos=' valor1//Prueba asi
dataType"json",
url'Busqueda.php',
}).
done(function(respuesta){
var 
oTable = $("#dataTable").dataTable();
oTable.fnClearTable();
oTable.fnDestroy();
$(
'#dataTable').dataTable( {
"bProcessing"true,
"bServerSide"true,
"sAjaxSource""../Busqueda.php",
});
});