<script type="text/javascript"> $(document).ready(function(){ $.get("news_findByPrograma.action?pno=1",function(){ alert(data); if(data.status === 1){ $("#study11").html(data.news[0][2]); $("#study12").html(data.news[0][3]); $("#study13").html(data.news[0][3]); } },"json") }) </script>
其中news_findByPrograma.action?pno=1可以正常返回json数据格式也验证过没有问题,可是为什么,alert(data) 看到的是 [object] Object
慕勒0069038