duan6161 2014-06-14 10:07
浏览 70
已采纳

无法使用Ajax的$ .post()方法调用PHP文件

I am trying to call php file located in the same directory as HTML using $.post() method of Ajax. however, i am getting a file not found(404) error.

below is the code I am using.

$(document).ready(function(){
        $("#formSubmit").on("click",function(){             

            alert("in iquery");
            $.post("./path.php",                        
                    function(){
                        alert("success1");
                        }                       
            );
        });
    });

I have tried calling other php file located in the subdirectory with "./PHP/path2.php". Its resulting in the same error.

Please help.

  • 写回答

1条回答 默认 最新

  • dongyanfeng0546 2014-06-14 10:12
    关注

    If the php file is in the same dir, then $.post("path.php", function() { alert("success"); }); without ./ should work. Also, handle the submit event on the form, which is better than the click event on the submit button, and make sure to disable the default behavior of the submit event with event.preventDefault() or a return false after the AJAX call.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图