按照qq_天霸动霸tuo_0说的那样做之后就可以了,我也不知道为什么,由于是第一次学习ajax,对于服务器方面也是不清楚,首先五行以及服务器文件http后加s,我觉得可能是由于服务器方面的问题造成的。不止src中的http后面加个s,在服务器文件http后面也记得了,各位老铁,小心坑了!
2018-04-13
var js = [{"name":"Tom","sex":"man","score":"80"},{"name":"Jerry","sex":"man","score":"92"}];
$.each(js,function(index,student){
$("ul").append("<li>"+"姓名:"+student["name"]+" 性别:"+student["sex"]+" 成绩:"+student["score"]);
});
$.each(js,function(index,student){
$("ul").append("<li>"+"姓名:"+student["name"]+" 性别:"+student["sex"]+" 成绩:"+student["score"]);
});
将源码(https://www.imooc.com/data/jquery.twoaddresult.js)中的:
if (p1 > p2) { //如果传入的参数前者大于后者
intResult = parseInt(p1) - parseInt(p2);
}
改成
intResult = parseInt(p1) - parseInt(p2);
就能正常运行
if (p1 > p2) { //如果传入的参数前者大于后者
intResult = parseInt(p1) - parseInt(p2);
}
改成
intResult = parseInt(p1) - parseInt(p2);
就能正常运行
2018-03-27