使用 JScript 检测 Web 服务可访问性
有没有一种通用的方法可以通过 JavaScript 来检测 Web 服务是否可访问? 例如,如果 Web 服务器关闭或者其上的 IIS 停止,我可以停止该程序。
Is there a common way to detect whether a web service is accessible, through javascript?
For example, if the web server is down or IIS on it is stopped, I can stop the program.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以简单地使用 jQuery 的 AJAX 函数向服务器发送请求,并监听错误(即:超时)
You can simply use jQuery's AJAX function to send a request to the server, and listen for errors (i.e.: timeout)