我正在尝试从本地主机的网站获取在某个主题中得分为“S”的人的注册号码。
但我收到了这个错误
XMLHttpRequest 无法加载http://sas.sastra.edu/result2013/index.php。Access-Control-Allow- Originhttp://localhost
不允许来源
for(i=115003001;i<115003230;i++)
{
$.post("http://sas.sastra.edu/result2013/index.php",{regno:i},function(data,textstatus,obj){
if($(data).find('tbody tr:nth-child(2) td:nth-child(2)').text().slice(60,62)=="S")
{
console.warn(i);
}
},{dataType:"HTML"});
}
如果我不清楚,请发表评论。