我正在尝试从网页模拟超时,以便我可以实现“处理超时”功能。
基本上我需要的是一个在 X 秒内没有回复的东西的 URL。
提前致谢
这是我的代码:
var req = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"].createInstance();
req.overrideMimeType('text/plain; charset=utf-8');
req.open("GET", configurationURL, false);
req.variable = specificConfigurationURLTerminator;
setTimeout(function() {
alert("aborting");
req.abort();
}, this.configurationRetrievalTimeout);
req.send(null);