使用 JavaScript 检测互联网并执行操作
希望有人可以在这里帮助我。我每天使用 ISP 提供的登录页面在我的计算机上登录并启动互联网。在这期间,连接断开了几次,我被重定向到登录页面。单击“登录”按钮后,互联网将再次启动。
我的问题。我可以自动检测互联网是否关闭并使用自动登录的脚本吗?
重定向页面上的登录按钮如下所示
<input type="submit" name="Submit" id="btnSubmit" value="Login" onclick="return checking();" />
Hopefully someone can help me here. I use a login page everyday given by my ISP to login and start internet on my machine. In between the connection goes off a couple of times and I am redirected to the login page. On clicking the Login button, the internet starts again.
My question. Can I automatically detect if the internet is off and use a script that auto logs me in.
THe Login button on the redirected page looks like this
<input type="submit" name="Submit" id="btnSubmit" value="Login" onclick="return checking();" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
真正的问题可能出在 DSL 调制解调器和/或设置中。例如,我在使用 2Wire 品牌调制解调器的人们中经常看到这种情况。
但一般任务是共同的。 以下是一个通用的 Greasemonkey 脚本,可以使用 - 但您必须稍微调整它,因为没有提供足够的登录页面。
理想情况下,保存整个登录页面,删除所有 IP 地址或密码,然后将其粘贴到此处或 Pastebin.com。那么我们就可以给出一个更精确的解。
脚本:
The real problem may be in a DSL modem and/or setup. For example, I've seen this a lot with people using 2Wire brand modems.
But the general task is a common one. The following is a generic Greasemonkey script that will work -- but you will have to tweak it slightly because enough of the login page was not provided.
Ideally, save the entire login page, strip out any IP addresses or passwords and then paste it here or at Pastebin.com. Then we can give a more exact solution.
Script: