<div class="hideAfterSuccess">
<label for="avatar">Upload an Avatar :</label>
<input type="file" name="avatar" id="avatar" />
</div>
下面是必须将图像位置传递给另一个文件(parsePortal.php)中的 php 函数的 jquery。能够传递文件的其他类型的数据,但图像失败。我想既然它发布了图像的位置字符串,我就可以使用 $_FILES[$_POST['image']]['name'] 然后上传图像。我已经尝试过网络,当然,没有找到我需要的东西。
$(function(){
var imageLoc = $('avatar').val();
var url = "parsePortal.php";
$.post(url, {
status : "getimage",
image : "imageLoc"
}, function(result){
});
});