帮助PHP和AJAX

时间:2010-11-29 11:20:42

标签: php ajax

假设我需要使用AJAX从js函数内部调用函数(php),是

语法正确:

$.post("phpReceivingFile.php", {func: (name: "james")}

.... ....

2 个答案:

答案 0 :(得分:4)

不,它不起作用,你不能调用那样的特定php函数。我建议发送一个get参数,然后在你的php中执行以下操作:

if($_GET['func'] == 'yourfunction') yourfunction($_GET['name']);

答案 1 :(得分:1)

您可能希望查看at this short php/ajax tutorial以了解如何将变量发送到php脚本。