我正在尝试通过javascript和php发送表单,但php在src属性中返回了很多未知代码,这是我的代码:
$.ajax({
url: '../libs/delete-post-photo.php',
type: 'POST',
data: {
path: photoToDelete
},
success: function(returnR){
console.log(returnR);
}
});
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#photoTitle').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$("#subject_photo_up").change(function(){
readURL(this);
});
服务器端:
if(isset($_POST) && !empty($_POST)){
echo $_POST['path'];
}
答案 0 :(得分:0)
最后我得到了解决方案,这很简单。
console.log(file.name);