Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<title>在状态栏显示网页加载进度</title>
<script language=VBScript>
Dim Bar, Line, SP
Bar = 0
Line = "|"
SP = 100
Function Window_onLoad()
Bar = 95
SP = 10
End Function
Function Count()
If Bar < 100 Then
Bar = Bar + 1
Window.Status = "加载中……" & Bar & "%" & " " & String(Bar, Line)
setTimeout "Count()", SP
Else
Window.Status = "Codefans.net"
Document.Body.Style.Display = ""
End If
Call Count()
</script>
CSS代码...
xxxxxxxxxx
JS代码...