从post发送多个参数到php函数?

时间:2014-10-23 23:03:46

标签: php jquery

如果我有这样的东西

$.post("<?php localhost/site/foo/1123?>", callBackFoo);

它将1123传递给foo函数,foo函数回传给callBackFoo

我想知道如何向foo添加另一个参数,所以它需要1123作为arg1而其他东西作为arg2

提前致谢。

2 个答案:

答案 0 :(得分:1)

目前还不清楚你是如何处理变量的。

你不能localhost/site/foo?arg1=123&arg2=456

然后使用$arg1 = $_GET['arg1'];

在PHP中获取参数

答案 1 :(得分:0)

阅读jQuery API文档:

  

示例:请求test.php页面并发送一些其他数据   (虽然仍然忽略了返回结果)。

     

$.post( "test.php", { name: "John", time: "2pm" } );

     

示例:将数据数组传递给服务器(同时仍然忽略了   返回结果)。

     

$.post( "test.php", { 'choices[]': [ "Jon", "Susan" ] } );

来源:http://api.jquery.com/jquery.post/