我的代码有什么问题,我无法在 resultTXT 中显示任何内容
txtfld 显示数组
[{
"user_id": "2790",
"freelancer_name": "",
"order_id": "9121",
"orderamount": "0.00",
"payment_method": " ....... "
}]
我希望用户 ID 在 resultTXT 中
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
$.post('userfind.php', function(data) {
$("#txtfld").val(data);
var json = data,
obj = JSON.parse(json);
alert(""+obj.user_id);
$("#resultTXT").val(obj.user_id);
},'json');
}
};
ajaxRequest.open("POST", "userfind.php", true);
ajaxRequest.send(null);
请帮助我应该改变什么。