更新
错误,我尝试查看更多教程,我决定首先使用 $.get(),因为它更容易且适合起点..
所以这是脚本,我认为它可以正常工作,除非它给出未定义的结果
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Display Json</title>
<script src="../_js/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
$('#jsonButton').click(function()
{
var data = ''
$.get('getJson.php', data, response);
});//end click
});//end ready
function response(data)
{
$('#display').prepend('<p>' + data.name + data.phone + '</p>');
}
</script>
<body>
<div id="display">
<input type="button" id="jsonButton" value="getJson!" />
</div>
</body>
</html>
这是返回简单 JSON 对象的 getJson.php 简单 php 脚本:
$data['name'] = 'username';
$data['phone'] = '08989808089';
header('Content-Type: application/json');
echo json_encode($data);
当我单击“getJson”按钮时,它显示未定义