我有一个代码,它获取一些数据并将其发送到一个 php 页面,该页面生成该过程并最终显示该过程的结果而无需重新加载页面:
所以,我有这个调用 process.php 文件的代码。
$(document).ready(function(){
$("#btEnviar").click(function (){
var datos = $("#formulario").serialize();
$.ajax({
type: "POST",
url: "process.php",
data: datos,
contentType: "application/x-www-form-urlencoded",
beforeSend: function() {
$("#status").html("Enviando....");
},
dataType: "html",
success: function(datos){
if(datos == 1){
$("#status").html("Script procesado satisfactoriamente");
}else if(datos == 0){
$("#status").html("Error al procesar script");
}
}
});
});
});
可以制作 process.php 的进度条吗?
在此先感谢您的帮助。