使用iframe对IE7中的非特定页面进行跨域请求不起作用。按照我的代码:
iframe = document.createElement('iframe');
iframe.name='iframe';
iframe.id = "iframe";
document.getElementsByTagName('body')[0].appendChild(iframe);
document.getElementById('iframe').src= "http://nominatim.openstreetmap.org/search?q=135+pilkington+avenue,+birmingham&format=json&polygon=1&addressdetails=1";
如何用纯javascript解决它?