我正在尝试编写代码让用户使用 php 上传他们的个人资料图片。我希望在不重新加载页面的情况下更新图像。我曾尝试使用 ajax 来做到这一点。我的ajax代码是:
function f()
{
var ajaxRequest; // The variable that makes Ajax possible!
try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
} catch (e){
// Internet Explorer Browsers
try{
ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try{
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e){
// Something went wrong
alert("Your browser broke!");
return false;
}
}
}
// Create a function that will receive data sent from the server
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
x=document.getElementById("img"); //Find the element
x.innerHTML=ajaxRequest.responseText; //Change the content
}
}
ajaxRequest.open("POST", "Uploadimage.php", true);
ajaxRequest.send();
}
Uploadimage.php 是上传图像并将其移动到文件夹中的文件。$_FILES 包含文件的详细信息(文件名、类型等)。上面的代码不起作用,即图像没有更新。请帮我解决这个问题。谢谢你。