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

jsonp解决跨域问题

时间:2016-07-04 20:34:14      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
        <script src="js/jquery-1.8.3.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body>
    </body>
    <script type="text/javascript">
        $(function(){
            $.ajax({
                type:get,
                url:"http://bmworld.cn:1233/Mobile/V1.asmx/GetGoodsCategoryList?JsonpCallback=mianshi1&key=mianshi&StationId=1&CategoryFatherId=0",
                dataType:"jsonp",
                jsonpCallback:"mianshi1",
                async:true,
                success:function(e){
                    console.log(e);
                }
            })
        })
    </script>
</html>

 

jsonp解决跨域问题

标签:

原文地址:http://www.cnblogs.com/loewe0202/p/5641469.html

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