小编典典

从php页面调用php函数的ajax

ajax

这是我的jQuery代码:

$.ajax({  
  type: "POST",  
  url: "process.php",
  success: function(msg){
  }  
});

在process.php页面中,我有多个功能。一种功能是sendmail()。

如何通过ajax调用此函数?我将代码编写为: url: "process.php/sendmail", 但是什么也没发生。


阅读 190

收藏
2020-07-26

共1个答案

小编典典

Ajax通话传递一些dataprocess.php

$.ajax({  
  type: "POST",  
  url: "process.php",
  data: {method: 'one'},
  success: function(msg){
  }  
});

在php页面中,

if(isset($_POST["method"])) {
    $method = $_POST["method"];
    if($method=="one") {
       //call methods/functions here
    }
}
2020-07-26