gistfile1.txt $(document).ready(function(){$("#btn").click(function(){$.ajax({type:"get",url:"1.txt",dataType:"json",cache:"false",//关闭缓存success:function(data){$.each(data,function(i,n){$("#tex").append("姓名:"+n["name"]+" 性别:
$(document).ready(function(){
$("#btn").click(function(){
$.ajax({
type:"get",
url:"1.txt",
dataType:"json",
cache:"false",//关闭缓存
success:function(data){
$.each(data,function(i,n){
$("#tex").append("姓名:"+n["name"]+" 性别:"+n["sex"]+" 年龄:"+n["age"]+"");
})
}
});
});
});
