为什么data.responseText为空

时间:2015-03-17 09:02:24

标签: javascript jquery cross-domain

为什么以下代码中的data.reponseText在浏览器中无法包含任何内容?

<!DOCTYPE HTML>
<html>
<head>
  <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
  <script type="text/javascript" src="jquery.xdomainajax.js"></script>

  <script type="text/javascript">
    window.onload = function() {
      $.get('http://www.vtb24.ru/_layouts/Vtb24.Pages/CurrencyRateAjax.aspx', function(data) {
        console.log(data.responseText);
      });
    };
  </script>
</head>
<body>
</body>
</html>

你可以找到&#34; jquery.xdomainajax.js&#34;在这里 - https://github.com/padolsey/jquery.fn/tree/master/cross-domain-ajax

提前致谢。

0 个答案:

没有答案