<script>
function updateClient(){
$id= $("#btnsend").val();
//alert("la funcion ejecuta");
if ($("#cliente_nom").val()==""){
alert("Ingrese NOMBRE DEL CLIENTE.");
}
else{
$.post("controllers/editclientController.php",
{
id_cliente: $id,
nom_clie: $('#cliente_nom').val(),
contact: $('#contacto').val(),
dir_com: $('#direc_com').val(),
telefono: $('#telef').val(),
cedula: $('#cedula').val(),
ruc: $('#ruc').val(),
zone: $('#zona').val(),
ciudad: $('#ciudad').val(),
fax: $('#fax').val(),
tipo: $('#tipo').val(),
telefono_dom: $('#telef_dom').val()
,
function(data, status){
alert("Informacion \nDATA:"+data+"\nSTATUS="+status);
}
}
);
}
}
</script>
以下函数将“data”和“status”都返回为undefined。可能是什么问题呢?我尝试评论各个字段,但它仍然存在同样的问题。这可能是语法错误吗?或者它与html字段本身有关吗?