Код: Выделить всё
Код: Выделить всё
[
{ "id": "121353568", "name": "Baju Casual - Black" },
{ "id": "556903232", "name": "Tas LV - Red" },
{ "id": "795953280", "name": "Sword - Wood" },
{ "id": "834032960", "name": "Scooter - Iron Plate" }
]
Код: Выделить всё
function showHint() {
const xmlhttp = new XMLHttpRequest();
xmlhttp.onload = function() {
var obj = this.responseText;
document.getElementById("txtHint").innerHTML = obj.id;
}
xmlhttp.open("GET", "Download.php");
xmlhttp.send();
}
Код: Выделить всё
obj.id
Подробнее здесь: https://stackoverflow.com/questions/692 ... not-workin