jsonp 가 이렇게 이 루어 지 는 구나.

1079 단어 jsonp
function loginRequest(jsonp){
rnd = getRnd();
c_url = "http://reg.163.com/services/httpLoginExchgKey?rnd="+rnd;
c_url += "&jsonp="+jsonp;
fGetJson(c_url);
}

function getRnd(){ 
//var uid = $("idInput").value + "@163.com";
var timestamp = new Date().getTime();
//var rnd = base64encode(utf16to8(uid + "
" + timestamp)); var rnd = base64encode(utf16to8("
" + timestamp)); return rnd; } function fGetJson(url){ var oHead = document.getElementsByTagName("HEAD")[0] || document.documentElement; var sForJson = document.createElement("script"); oHead.insertBefore( sForJson, oHead.firstChild ); //sForJson.setAttribute("charset", "gb2312"); sForJson.setAttribute("type", "text/javascript"); sForJson.setAttribute("src", url); }

 
그런데 제 이 슨 p 가 다른 길 로 가면 안 된다 는 의혹 이 있 나 요?IE 에서 jsonp 만 비동기 화 를 실현 할 수 있 습 니까?

좋은 웹페이지 즐겨찾기