我想知道如何递归调用Ajax函数。 我的ajax代码是这样的,
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
var step='1';
$.ajax
(
{
url: 'test1.php',
data: {step: step},
success: function(output)
{
step=eval(output);
alert(step);
}
}
);
</script>
</head>
</html>
php代码就像这样
<?php
function writeName()
{
echo "step=2";
}
function ReadName()
{
echo "In Read Name Function";
}
if(isset($_REQUEST['step']) && !empty($_REQUEST['step']))
{
$step = $_REQUEST['step'];
switch($step)
{
case '1' :
writeName();
break;
case '2' :
ReadName();
break;
default :
echo "Empty String";
}
}
?>
第一次调用此函数时,步长变量的值等于1,函数写入名称将其修改为2.现在我想调用此变量值等于2的Ajax函数。这样第二个php函数被调用
答案 0 :(得分:1)
您可以创建一个进行Ajax调用的函数,并接受该步骤作为参数:
function getStep(step) {
$.ajax
(
{
url: 'test1.php',
data: {step: step},
success: function(output)
{
step=parseInt(output);
alert(step);
if (step < 2) {
getStep(step);
}
}
}
);
}
答案 1 :(得分:0)
您需要在服务器端PHP脚本中使用“json_encode()”函数,而不是简单的“echo”。 Javascript中的“eval()”方法尝试运行返回的文本。
你应该在writeName()函数中写下这段代码:
echo json_encode(2);