1

我正在尝试使用 $.getJSON 函数返回数据。我有以下名为 page.html 的 html 文件

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns=" http://www.w3.org/1999/xhtml ">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Request json test</title> 
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){

    $.getJSON("json-data.php",function(result){
     alert(result);
    });

  });

});
</script> 
</head>
<body>
<button>Get JSON data</button>
<div id="showdata"></div>
</body>
</html> 

我还有以下名为 json-data.php 的 PHP 文件:

<?php
//request data from the database
//code here to connect to database and get the data you want

/* Example JSON format 
{
  "item1": "I love jquery4u",
  "item2": "You love jQuery4u",
  "item3": "We love jQuery4u"
}
*/
$item1 = "I love jquery4u";
$item2 = "You love jquery4u";
$item3 = "We love jquery4u";
//return in JSON format
echo "{";
echo "item1: ", json_encode($item1), "\n";
echo "item2: ", json_encode($item2), "\n";
echo "item3: ", json_encode($item3), "\n";
echo "}";
?>

我只是尝试使用警报功能来查看 PHP 文件中的数据,但是它不起作用。有谁知道为什么?

谢谢,吉姆

4

1 回答 1

1

这是因为您的 json 格式无效:

$items = array("item1" => "I love jquery4u", "item2" => "You love jquery4u", "item3" => "jquery4u");

echo json_encode($items);
于 2012-06-07T20:34:37.410 回答