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

原生jsonp跨域

时间:2017-09-10 23:53:23      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:ack   test   code   16px   nbsp   fun   style   color   var   

<script>
    // jsonp跨域原生写法
    var script = document.createElement(‘script‘);
    script.src = ‘http://192.168.7.16/kuayu/test02.php?callback=aa‘;
    document.body.appendChild(script);
    //aa(‘后台数据‘)
    function aa(res) {
        alert(res.website);
    }
</script>

 

原生jsonp跨域

标签:ack   test   code   16px   nbsp   fun   style   color   var   

原文地址:http://www.cnblogs.com/lhl66/p/7502807.html

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