小编典典

如何从ajax调用php函数?

ajax

我熟悉如何使ajax转到php页面并执行一系列操作,然后返回json数据。但是,可以调用驻留在给定页面中的特定函数吗?

基本上我想要的是减少项目中的文件数。因此,我可以将很多常用功能放在一页中,然后立即调用我想要的任何功能。


阅读 259

收藏
2020-07-26

共1个答案

小编典典

对于ajax请求

1.在您的网页中包含Jquery库。例如:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>

2.点击按钮调用功能

<button type="button" onclick="create()">Click Me</button>

3.点击按钮,调用JavaScript创建函数。

    <script>
    function create () {
          $.ajax({
            url:"test.php", //the page containing php script
            type: "post", //request type,
            dataType: 'json',
           data: {registration: "success", name: "xyz", email: "abc@gmail.com"}
            success:function(result){

             console.log(result.abc);
           }
         });
     }
<script>

在服务器端的test.php文件中,应读取action POST参数和相应的值,并以php格式执行操作并以json格式返回,例如

$regstration = $_POST['registration'];
$name= $_POST['name'];
$email= $_POST['email'];

if ($registration == "success"){
 // some action goes here under php
 echo json_encode(array("abc"=>'successfuly registered'));
}
2020-07-26