1

如何在 javascript AJAX 中从 php 获取两个 id 值

测试.php

function lc(str) {
    if (str.length == 0) {
        document.getElementById("txtHint").innerHTML = "";
        return;
    }
    xmlhttp.onreadystatechange = function () {
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET", "gethint.php?q=" + str, true);
    xmlhttp.send();
} 


<p>Output1: <span id="txtHint"></span></p>
<p>Output2: <span id="wrdHint"></span></p>

gethint.php

<?php
$q=$_GET["q"];

if (strlen($q) > 0)
  {
  $out1=strlen($q);
  }
if (str_word_count($q) > 0)
  {
  $out2=strrev($q);
  }
echo $out1;
echo $out2;
?>

Output1 仅工作
Output2 不工作。

谁能帮帮我吗....

4

2 回答 2

1

修改您的 php 代码,并输出以逗号分隔的两个 id:

<?php
$q=$_GET["q"];
$out1="";
$out2="";
if (strlen($q) > 0)
  {
  $out1=strlen($q);
  }
if (str_word_count($q) > 0)
  {
  $out2=strrev($q);
  }
echo $out1.",".$out2;

?>

然后在你的 javascript

采用

var str = xmlhttp.responseText;
var arr = str.split(',');
// arr[0] will be the first id
// arr[1] will be the second id

document.getElementById("txtHint").innerHTML = arr[0];
document.getElementById("wrdHint").innerHTML = arr[1];
于 2013-10-21T10:47:00.870 回答
0

将两个值连接在一起,然后在 jquery 函数中将它们分开。另一种方法是使用 json_encode() 将它们编码为带有键值对的 json。然后解析它们会更容易。

于 2013-10-21T10:57:47.900 回答