简体   繁体   中英

ajax request without data not working

I am trying to delete a photo using ajax and when the photo is deleted show default image instantly, so far I am done with php side but the ajax part isn't working. How can I make an ajax request without data type?

function delete_image()
{
    $.ajax({
        type: "POST",
        url: "target.php?page=delete",
        cache: false,
        success: function(response)
        {  
            var $divs = $("<div>" + response + "</div>");
              $("#phd").fadeOut('slow');
            $(".suc_pic").fadeIn('slow').empty().append($divs.find("#msg"));//the default picture fades in once the photo is deleted.

           }
    });


}

Try move "page= delete" in data secction:

function delete_image()
    {
        $.ajax({
            type: "POST",
            url: "target.php",
            cache: false,
            success: function(response)
            {  
                var $divs = $("<div>" + response + "</div>");
                  $("#phd").fadeOut('slow');
                $(".suc_pic").fadeIn('slow').empty().append($divs.find("#msg"));//the default picture fades in once the photo is deleted.

            },
            data: {page='delete'}
        });

    }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM