📄 06.html
字号:
<script>var WastedTime = { start: new Date(), // Remember the time we started displayElapsedTime: function() { var now = new Date(); // What time is it now // compute elapsed minutes var elapsed = Math.round((now - WastedTime.start)/60000); // And try to display this in the status bar window.defaultStatus = "You have wasted " + elapsed + " minutes."; }}// Update the status line every minutesetInterval(WastedTime.displayElapsedTime, 60000);</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -