我有一个基本的javascript,我从Windows桌面上的.js运行以从https://lookup.binlist.net/检索数据 - 当我运行它时,我在GET线上得到超时。我已经查看了各种解决方案,但没有找到解决我问题的任何方法。有人有任何想法吗?
var urlb = "https://lookup.binlist.net/431940";
var xsh = new ActiveXObject("Msxml2.ServerXMLHTTP.6.0");
xsh.open("GET", urlb, false);
xsh.send();