Сообщение от mma_mma
|
$.post(
'тут_адрес',
{какие-то_переменные},
function(data) {
alert(data);
}
/*, 'json' */
)[/JS]
|
$.post("test.php", { "func": "getNameAndTime" },
function(data){
alert(data.name); // John
console.log(data.time); // 2pm
}
, "json");
Сообщение от mma_mma
|
заголовки типо:
header('Content-Type: text/json /*или text/javascript*/; charset=[B]windows-1251[/B]');
не помогают.
|
"Content-type: application/json"