upload image using codeigniter with ajax and formdata

前端 未结 3 1400
栀梦
栀梦 2020-12-20 07:40

I like to upload image using codeigniter Framework in PHP with JQuery AJAX without redirecting the page. When i upload the image it redirecting to controller area and the v

3条回答
  •  不知归路
    2020-12-20 08:34

    this is simple.
    problem is the ajax
    you should stop the form submit first

    $('form').on('submit',function(e){//bind event on form submit.
       e.preventDefault();//stop submit
       .........          //your other codes
    

提交回复
热议问题