码迷,mamicode.com
首页 > Web开发 > 详细

jsonp跨域

时间:2014-08-10 21:20:30      阅读:445      评论:0      收藏:0      [点我收藏+]

标签:blog   http   os   io   ar   cti   amp   log   

var getJSONP = function ( url, callback ) {

  if( !url ) {

    return ;

  }

  var cbnum = ‘cb‘ + JSONP.counter++;

  var cbname = ‘JSONP.‘ + cbnum;

  if( url.indexOf(‘?‘) === -1) {

    url += ‘?jsonp=‘ + cbname;

  }else{

    url += ‘&jsonp=‘ + cbname;

  }

  

  JSONP[cbnum]= function ( res ) {

    try {

      callback( res );

    }catch( e ) {

      //

     }finally{

      delete getJSONP[cbnum];

      oScript.parentNode.removeChild(oScript);

    }

  };

  var oScript = document.createElement(‘script‘);

  oScript.src = url;

  document.getElementsByTagName(‘head‘)[0].appendChild(oScript);

};

//调用

 JSONP.counter = 0;

getJSONP(‘http://i.cnblogs.com/EditPosts.aspx?opt=1‘, function () {});

jsonp跨域,布布扣,bubuko.com

jsonp跨域

标签:blog   http   os   io   ar   cti   amp   log   

原文地址:http://www.cnblogs.com/guoyongfeng/p/3903242.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!