我得到了将数据发送到MySQL,但我需要将图像发送到upload.php。如何将带有数据的图像发送到.php进程?
$(document).ready(function(){
$('#regcategoryerror').hide();
$('#regcategory').hide();
$('#IncludeCategory').submit(function(){
var categoryname=$('#categoryname').val();
var categoryurl=$('#categoryurl').val();
$.ajax({
url:"upload.php",
type:"post",
data: "name="+categoryname+"&url="+categoryurl,
success: function (result){
if(result==1){
$('#regcategoryerror').hide();
$('#regcategory').show();
}else{
$('#regcategory').hide();
$('#regcategoryerror').show();
}
}
})
return false;
})
})