在 test.php 中:
<?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>
我已经做了一些健全性检查,似乎 data[0] 不是访问我在 php.ini 中推送的第一个元素的正确方法。那么我该怎么做呢?