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

jsonp的函数实现

时间:2014-09-24 16:00:07      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   io   java   ar   sp   cti   on   c   amp   

 

自己写的jsonp函数封装

 

getJsonp:function(url,fn){
       var callback=‘c_brand_jsonp‘+String(Math.random()).replace(‘.‘,‘‘);
       url=url+‘&callback=‘+callback;
       var script=document.createElement(‘script‘);
      script.id=‘c_brand_script‘;
      script.type="text/javascript";
      script.src=url;
      document.getElementsByTagName(‘head‘)[0].appendChild(script);
      window[callback]=function(json){
           document.getElementsByTagName(‘head‘)[0].removeChild(document.getElementById(‘c_brand_script‘));
           fn(json);
      }
 }

jsonp的函数实现

标签:style   io   java   ar   sp   cti   on   c   amp   

原文地址:http://www.cnblogs.com/webcheng/p/3990642.html

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