解决Ajax跨域问题:Origin xx is not allowed by Access-Control-Allow-Origin.

一:使用jsonp格式, 如jquery中ajax请求参数   dataType:'JSONP'。

<html>
<head>
    <title>title</title>
    <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
    <script>
        $.ajax({
            url:"http://map.yanue.net/gpsApi.php?lat=22.502412986242&lng=113.93832783228",
            type:'GET',
            dataType:'JSONP',
            success: function(data){
                $('body').append( "Name: " + data );
            }
        });
    </script>
</head>
<body>
测试Ajax跨域问题
</body>
</html>

  

二,server端加上header设为 Access-Control-Allow-Origin:*

header("Access-Control-Allow-Origin: *"); # 跨域处理
header(“Access-Control-Allow-Methods”, “POST,OPTIONS,GET”);

  

 

原文地址:https://www.cnblogs.com/adtuu/p/4688199.html