0
function ajaxFunction(){
var ajaxRequest;  // The variable that makes Ajax possible!

try{
    // Opera 8.0+, Firefox, Safari
    ajaxRequest = new XMLHttpRequest();
} catch (e){
    // Internet Explorer Browsers
    try{
        ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
        try{
            ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (e){
            // Something went wrong
            alert("Your browser is too old to run me!");
            return false;
        }
    }
}
// Create a function that will receive data sent from the server
ajaxRequest.onreadystatechange = function(){
    if(ajaxRequest.readyState == 4){
$.post('userfind.php', function(data) {

$("#resultTXT").val(data);

var response = data;

var parsedJSON = eval('('+response+')');
alert('parsedJSON:'+parsedJSON);

var result=parsedJSON.result;

var count=parsedJSON.count;

alert('result:'+result+' count:'+count);




},'json'

);      }
}
    ajaxRequest.open("POST", "userfind.php", true);
    ajaxRequest.send(null); 
}

Blockquote 所以我得到了我上面的代码,在你们的帮助下。上面的代码将用字符串填充 txtbox,但我无法访问字符串的每个元素。该字符串是使用 Jsone_encode 从 PHP 文件中分页的数组。

数组是这样的。[{"user_id":"2790","freelancer_name":"","order_id":"9121","orderamount":"0.00"

我想做的是编写这样的代码:

    document.getElementById("_proId").value = user_id;
document.getElementById("_buyerSt").value = freelancer_name;
document.getElementById("_buyerDesc").value = order_id;
document.getElementById("_mngSt").value = orderamount;
  ... etc

Blockquote 所以我的问题是如何拆分字符串并获取数据。这 2 个变量

var result=parsedJSON.result;

    var count=parsedJSON.count;
    alert (""+result);
    alert (""+count);

只提醒我未定义。

请帮我从字符串中获取数据。

该数组是从 mysql 表中获取的,并且很大

4

1 回答 1

2

1. 看起来没有充分的理由使用 eval 自己解析 json。

您可以使用经过验证的 JSON 库作为json2.jsJSON-js

2. 您的 JSON [ {"user_id":"123", ... }, {... }, {...} ] 将被解析为数组。

使用 for each 来迭代 Array 中的对象。

于 2012-07-12T01:10:52.323 回答