我正在尝试将ajax响应值传递给php函数。
ajax.js
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
var a = xmlhttp.responseText;
}
}
我需要在PHP函数中使用a
值。
test.php的
function testFun($a);
这可能吗???谢谢你的帮助!!
答案 0 :(得分:1)
Try This:
/** JAVA SCRIPT **/
// create a request query
var queryString = "?send_param=" + a;
// send request query to php file
xmlhttp.open("GET", "test.php" + queryString, true);
xmlhttp.send(null);
/** JAVA SCRIPT END **/
/** PHP SCRIPT **/
[ test.php ]
<?php
// if $_REQUEST array is empty show error and die;
if (empty($_REQUEST)) {
die("Error: No request found");
} else {
// split the $_REQUEST array and make array key as php variable
extract($_REQUEST);
}
/**
* Function testFun
* @param string $a
*/
function testFun($a)
{
// return val
}
// Call the function
testFun($send_param);
?>
/** PHP SCRIPT END **/
I preferred to use $.ajax function instead to Java Script Ajax, Coz it's handy :) and to good.
[1]: http://php.net/manual/en/function.extract.php
答案 1 :(得分:0)
写下另一个AJAX请求并将a
传递到包含该函数的PHP文件中,并将输入读取为GET或POST,然后根据需要使用输出。使用像jQuery这样的JS框架将有助于缩短您的AJAX调用。