@
lyp111332 根据你的描述做了一个简单的 Demo, 没发现有什么不能输出的.
Demo:
https://xqin.net/temp/json_test.htmlhtml 代码:
```
<script src="//
js.xqin.net/jquery-1.7.1.min.js" type="text/javascript"></script>
<script src="//
js.xqin.net/jquery.json-2.3.min.js" type="text/javascript"></script>
<script type="text/javascript">
$.ajax('json_test.php', {
type: 'POST',//POST
contentType : 'application/json',//发送 JSON 格式的数据
data: $.toJSON({t: Math.random()}),// $.toJSON 在 jquery.json 中定义
success: function(v){
alert(v);//输出服务器返回的内容
}
});
</script>
```
php 代码
```
<?php
echo file_get_contents('php://input');
```