1
在test.php的:jquery的訪問的PHP jason_encoded陣列
<?php
array_push($stack, "BLABLA");
array_push($stack, "BLABLA2");
echo json_encode($stack);
?>
在的test.html:
<script type="text/javascript">
$(document).ready(function(){
$.post(
'test.php', // location of your php script
{}, // any data you want to send to the script
function(data){ // a function to deal with the returned information
$('#mydiv').html(data[0]).show();
}, "json");
});
</script>
<div id="mydiv"></div>
我已經做了一些完整性檢查,似乎數據[0]是不訪問我在PHP中推送的第一個元素的正確方法。那我該怎麼做?
你知道你的數組叫做'$ stack',但是你在名爲'$ array'的變量上使用'json_encode()'嗎? – JakeParis 2013-02-25 04:00:30
你可以發佈你從服務器收到的json – dakait 2013-02-25 04:00:40
我真的不知道如何找到這個!對不起,這很新鮮。 – Kam 2013-02-25 04:08:41