<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>jquery获取json数据演示页面</title>
    <script type="text/javascript" src="js/jquery-1.2.1.pack.js"></script>
    <script type="text/javascript">
    function getData(){
    $("#list").html("");//清空列表中的数据
   //发送ajax请求
    $.getJSON(
    "jsondata.ashx",//产生JSON数据的服务端页面
    {name:"test",age:20},//向服务器发出的查询字符串(此参数可选)
   //对返回的JSON数据进行处理,本例以列表的形式呈现
    function(json){
   //循环取json中的数据,并呈现在列表中
    $.each(json,function(i){
    $("#list").append("<li>name:"+json[i].name+"&nbsp; Age:"+json[i].age+"</li>")
    })
    })
    }
    </script>
</head>
<body>
    <input id="Button1" type="button" value="获取数据" onclick="getData()" />
   <ul id="list"></ul>
</body>
</html>以上代码引用jquery-1.4.2.js数据无法显示,为什么会这样,怎么解决。。