<html>
<body ononline="onFunction()" onoffline="offFunction()">
<p>打开文件菜单点击 "离线工作(Work Offline)" 来切换在线与离线模式。</p>
<p><strong>注意:</strong> ononline 和 onoffline 事件只有 Firefox 和 Internet Explorer 8 到 10 版本的浏览器支持。</p>
<script>
function onFunction() {
alert ("你的浏览器在线工作。");
}
function offFunction() {
alert ("你的浏览器离线工作。");
}
</script>
</body>
</html>