我做的圖片上傳到Ajax和發送與形式到PHP。但我有搜索到很多來源,但仍然沒有idea.can任何人幫我完成的代碼?與圖像Ajax和PHP上傳表單
<form name="registerform" id="data">
<div id="formleft">
<input type="email" name="email" placeholder="Email Address"><br>
<input type="file" id="pic" name="profile_pic" class="image_input" />
<input type="button" name="register" value="Sign Up" onclick="re2()" /><br>
</div>
</form>
function re2()
{
var image=document.getElementById("pic").src;
var re_email1=$("[name=register_email]").val();
$.ajax({
type : "get",
url : "add.php",
data : "type=regis2&image="+image+"&re_email="+email,
success : function(data){
alert(data);
*/ how i get the image file from form and pass the file to here and send ?? */
}
});
}
<?php
if ($_GET['type'] == "regis2")
{
$image=$_GET['image'];
$email=$_GET['re_email'];
$target_Path = 'image/';
$target_Path = $target_Path.basename($_FILES['image']['name']);
move_uploaded_file($_FILES["image"]["tmp_name"] , $target_Path);
}
?>
}
我該如何傳遞圖像使用ajax.becuase我有搜索谷歌,但仍然不知道。任何人都可以爲我完成代碼? 確實需要很多幫助
我想你所想的文件傳遞給PHP直接,你可以通過AJAX也以同樣的方式的方式完整實現AJAX文件上傳。但事實並非如此,爲了通過AJAX傳遞文件,你需要有一個FormData對象。這[後](http://stackoverflow.com/questions/10899384/uploading-both-data-and-files-in-one-form-using-ajax)會幫助你。 –
你能給我完整的代碼嗎? ,因爲我新手這裏只是進入ajax – user3149572