我正在尝试使用此mod通过jquery执行跨域请求:http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/。
该脚本位于https://github.com/padolsey/jQuery-Plugins/blob/master/cross-domain-ajax/jquery.xdomainajax.js。
首先,我想测试执行页面上引用的.load函数的mod的功能:
$('#container').load('http://google.com'); // SERIOUSLY!
我对如何执行此操作的简单猜测将是以下
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.xdomainajax.js"></script>
</head>
<body>
<div id="container">
google.com should be placed here
</div>
<script type="text/javascript">
$('#container').load('http://google.com');
</script>
</body>
</html>
但这不起作用(只需将google.com输出放在此处)。
对于如何改变我的猜测工作的任何帮助都将非常感激。
我已经查看How do you get content from another domain with .load()?这似乎与我的问题几乎相同的内容,但没有回答你如何实际使jquery mod链接工作。