오늘은 jQuery의 $.getJSON 메소드를 사용하는 DEMO를 작성하고 있는데, DEMO 전체에서 사용되는 곳은 jQuery에서 여기뿐이라는 것을 알았습니다. jQuery를 직접 구현했기 때문에 기본적으로 요구 사항을 충족할 수 있는 간단한 버전이 이제 공유됩니다.
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.charset = "UTF-8";
script .src = url;
return true;
},
getQueryString: function(url) {
var result = {}, queryString = (url && url.indexOf("?")!=-1 && url.split("?")[1]) || location.search.substring(1),
re = /([^&=] )= ([^&]*)/g, m;
while (m = re.exec(queryString)) {
result[decodeURIComponent(m[1])] = decodeURIComponent(m[2]);
}
}
}
};
다음과 같이 DEMO를 호출합니다.