📜  如何从 ajax 调用 php 函数 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:03.940000             🧑  作者: Mango

代码示例1
$.ajax({ url: 'phpscriptname.php',
         data: {function2call: 'getEmployeesList', otherkey:otherdata},
         type: 'post',
         success: function(output) {
                      alert(output);
         }
});