Checking if web server is online/offline [duplicat

2019-08-31 03:51发布

This question already has an answer here:

How would I check if a web server is online/offline from my domain? I've already tried an $ajax call with jsonp, but if the server isn't responding with json, then that doesn't work. Is there any other way to get an http response from a server?

2条回答
beautiful°
2楼-- · 2019-08-31 04:44

Just copied shamelessly from one website for easiness:

<img src="http://site-to-check.com/online.png" alt="status" onerror="this.src='files/offline.png'" />

The setup is:

An online icon (online.png) on the remote server you want to see the status of. An offline icon (offline.png) on the server that is going to show the status page.

If the image on the remote server fails to load, the onerror event is triggered and the javascript rewrites the image tag to show the offline image. You can use relative or absolute paths for the offline image. This snippet is fully compatible with all major browsers, including Internet Explorer down to version 5.5!

查看更多
淡お忘
3楼-- · 2019-08-31 04:52

As i understand, you want to know, if the website is online\offline How about this solution?

查看更多
登录 后发表回答