如何使用ajax和php上传图像和文本?

时间:2017-04-01 11:34:00

标签: php html ajax

我得到了将数据发送到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;
    })
})

0 个答案:

没有答案