Ajax not redirecting me to next page

后端 未结 2 1875
予麋鹿
予麋鹿 2021-01-28 22:04

I am trying to pass the ID of the clicked image to next page. When I developed my code, it didn\'t redirect me to the next page. When I click F12 and check the POST in network,

2条回答
  •  孤城傲影
    2021-01-28 22:48

    I think you are better off making a small form, since you want to send the user to a new page when clicking.

    fetch_assoc())  ?>
        
    $('.img').click(function() { this.form.submit(); });

    *Edited to reflect your current edits.

提交回复
热议问题