我试图做一个ajax请求来获取在
Windows Wamp服务器上运行的“http:// localhost /”的内容.
该脚本从这样运行:
文件:/// C:/my/path/index.html
我只是使用标准的$.ajax请求来尝试获取localhost的内容:
$.ajax({ type: 'GET',url: 'http://localhost/',success: function(data) { alert('success'); },error: function (data) { alert('Failed'); } });
我不能让它成功,但似乎是一些问题与本地文件系统或某事.我不太确定