最终我要做的就是寻找,是文字It's just you!或者不只是你!在isup.me/echelonservices.co.uk 的结果页面的源中的容器 ID 中:' < div id="container"> '。
我现在找到了一种方法,但无法将 Java 指向正确的站点。我所做的是使用以下 URL:isup.me/echelonservices.co.uk。但是,我在执行此操作时遇到问题。有人可以让我知道一种使用 Javascript 或其他可以使用的脚本源的方法,而无需从网络服务器托管网页。所以从本地客户端计算机运行网页。
这是我想出的最后一次尝试,但到目前为止失败了:
<script type="text/javascript">
//Specify where the sctipt should be running the code against.
window.location.protocol = "http"
window.location.host = "isup.me/echelonservices.co.uk"
//Look for the Class ID and output to a variable.
element = document.getElementById('container');
var Status = element.textContent || element.innerText;
//If the "Status" says: UP write UP, DOWN write DOWN and anything else write Status could not be determined!
if (Status=="UP") {document.write('<div style="color:#00BB00;font-family:Arial;font-weight:bold">UP</div>')}
else {if (Status=="DOWN") {document.write('<div style="color:#FF0000;font-family:Arial;font-weight:bold">DOWN</div>')}
else {document.write('<div style="color:#EDA200;font-family:Arial;font-weight:bold">WARNING:<br>Status could not be determined!</div>')};};
</script>