解决了
问题已解决,请参阅我的解决方案的底部答案
我一直在努力解决这个问题,我阅读了关于$.ajax()
这是脚本
<script src="jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(
function()
{
$('#getData').click(
function()
{
$.ajaxSetup({
cache: false
});
$.ajax(
{
type: 'GET',
url: 'http://localhost/Practice/Jquery/ajax/phone_data.php',
data: {rating: 5},
dataType: 'json',
success: function(data)
{
$('#display').html(data.phone);
},
error: function(response)
{
alert(response.responseText);
}
});//end ajax
});//end click
});//end ready
</script>
<body>
<input type="button" id="getData" name="submitButton" value="getJson!" />
<div id="display">
replace me with phone data
</div>
</body>
这是phone_data.php
<?php
header('Content-Type: application/json; charset=utf-8');
$data['phone'] = '989898989';
$data['username'] = 'sendyHalim';
echo json_encode($data, true);
exit();
当我单击按钮时,萤火虫显示请求正常,但没有任何反应..
所以我通过firebug检查ajax调用的“响应”并得到:
Reload the page to get source for: http://localhost/Practice/Jquery/ajax/phone_data.php?rating=5&_=1368793325734
更新
我更新了我的代码,我搜索了一些方法来获取响应文本(使用responseText
来自的属性response
),但它只是用空字符串(什么都没有)发出警报。
这是我单独运行 phone_data.php 脚本时的输出:
{"phone":"989898989","username":"sendyHalim"}
并"view page info"
从 Firefox 确认内容类型是"application/json"