运行 ❯
获取您自己的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Events</h1> <h2>The onoffline Event</h2> <p>Use the HTML DOM to assign an "ononline" and "onoffline" event to a body element.</p> <p><b>NOTE:</b> There will only be an "output" from this example when the browser shifts from online to offline.</p> <script> document.getElementsByTagName("BODY")[0].ononline = function() {onFunction()}; document.getElementsByTagName("BODY")[0].onoffline = function() {offFunction()}; function onFunction() { document.getElementById("demo").innerHTML = "Your browser is working online."; } function offFunction() { document.getElementById("demo").innerHTML = "Your browser is working offline."; } </script> </body> </html>