也许这可能非常简单,我找不到为什么这个 ajax 调用不起作用。我放置了有效的 post call 等效项。
//this works
$(document).ready(function () {
$('#ingresa_usuario_form').submit(function (event) {
event.preventDefault();
var url = $(this).attr('action');
var datos = $(this).serialize();
$.post(url, datos, function (resultado) {
$('#posted_values').html(resultado);
});
});
});
//this doesn't work
$(document).ready(function(){
$('#ingresa_usuario_form').submit(function (event) {
event.preventDefault();
$.ajax({
type: "POST",
url: $(this).attr('action'),
data: $(this).serialize(),
dataType: "text/plain",
success: function (response) {
$('#posted_values').html(response);
}
});
})
});