ajax从php页面调用php函数

时间:2012-01-02 04:48:17

标签: php ajax

这是我的jQuery代码:

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

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

如何通过ajax调用此函数?我把代码编写为: url: "process.php/sendmail", 但没有任何反应。

6 个答案:

答案 0 :(得分:8)

这是您的脚本文件

 $.ajax({
       url: "process.php",
       type: "POST",
       data: "functionName=sendmail",
       cache: true,
       success: function(response){

       }

这是你的process.php文件

<?php
if(isset($_POST))
{
   if($_POST["functionName"] == "sendmail")
   {
      sendmail();
   }
}
?>

答案 1 :(得分:4)

通过Ajax来电,将data传递给process.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
    }
}

答案 2 :(得分:2)

可能低于对您有帮助的代码..

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

试试这个..

感谢。

答案 3 :(得分:0)

没有自动方法告诉PHP调用您的函数,但您可以通过简单的检查来完成此操作。由于你正在尝试像“process.php / sendmail”这样的网址,你可以测试PHP变量$ _SERVER ['PATH_INFO']

if ('sendmail' == $_SERVER['PATH_INFO']) {
    sendmail();
}

答案 4 :(得分:0)

尝试使用if else和process.php?fun = sendmail

if($_GET['fun'] == "Sendmail")
  sendmail()
else
  // something else 

答案 5 :(得分:0)

调用send mail函数将参数传递给process.php文件,并检测该参数如:

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

现在正在进行中.php使用:

$_REQUEST['sendMail'] 

检测值..