jQuery AJAX获取请求 - 无法查看返回的数据

时间:2010-05-14 20:04:53

标签: jquery

我想我在这里遗漏了一些明显的东西,但我无法弄明白。我希望以下HTML能够提醒服务器的响应。但是,警报是空的。我可以在Wireshark中看到预期的响应从服务器返回给我。为什么不在数据变量中填充?

<html>
<head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript">
  $.get("http://www.geocommunicator.gov/TownshipGeocoder/TownshipGeocoder.asmx/GetTRS",
        {'Lat': 41,
         'Lon': -93,             
         'Units': 'eDD',
         'Datum': ''},      
        function(data) {
            alert('data:'+data);
        });
</script>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

跨站点保护。

你需要使用jsonp。