백엔드:
$json_str = json_encode(array("ddd"=>"11111111"))
echo $_GET['ja'].'('.$json_str.')'
?> >
프론트 엔드:
$.getJSON(' http://www.liushan.cn/test.php?ja=?',function (json){
alert(json);
})
순수 JS 구현(JSONP):
//서버 반환 aa({' ddd':'ddd'}) 콜백 함수 이름: $_GET['callback']
//author:lonely
(function(w){
함수 getjson(){}
getjson.prototype.set=function(url,callback,callbackname){
this.callfn=callbackname||'urlcallback'
this.url=url "?callback=" this.callfn;
시도{
eval(this.callfn "=function(data){n"
"callback(data);n"
'delete ' this.callfn ';}' );
}catch(e) {return;}
this.request();
delete this.url;
}
getjson.prototype.request=function(){
var script=document.createElement("script ");
script.src=this.url;
var load=false;
script.onload = script.onreadystatechange = function() {
if(this.readyState === "로드됨" || this.readyState === "완료"){
load=true;
script.onload = script.onreadystatechange=null
>};
var head=document .getElementsByTagName("head")[0];
head.insertBefore(script,head.firstChild)
w.getjson=getjson; >})(창)
/ /DOME 사용
new getjson().set("http://www.test.cn/test.php",function(data){
alert(data .ddd)
});
다른: getScript
코드 복사
jQuery.getScript("http://dev.jquery.com/view/trunk/plugins/color/jquery.color.js", function(){ $("#go").click(function( ){
$(".block").animate( { backgroundColor: 'pink' }, 1000)
.animate( { backgroundColor: 'blue' } , 1000);
});
});//CHM 도움말 파일 예시