我有点困惑:
如果我做:
$.get('http://externhost/somefile.js', callback, 'text');
我有:
XMLHttpRequest cannot load http://externhost/somefile.js. Origin http://www.myhost.at is not allowed by Access-Control-Allow-Origin.
但如果我提出以下请求,我没有问题,一切都会正确发生:
$.get('http://externhost/somefile.js', callback, 'script');
我不知道为什么这适用于数据类型脚本,但不适用于 text/html/json。