为什么以下代码中的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
提前致谢。