我试图让 ajax 在 JSBIN 中工作,就像在这个视频中演示的那样。我没有错。似乎它应该工作!
$(document).ready(function(){
$.ajax({
type: "get",
url: "http://jsbin.com/ipefom/1/js",
dataType: "json",
success: function(returnedData){
console.log(returnedData)
}
});
});
http://jsbin.com/ocerag/3/edit
我不明白我的 parseerror 来自哪里。