- On Error Resume Next
-
- Set IE = CreateObject("InternetExplorer.Application")
- IE.Navigate "http://bbs.bathome.net"
- IE.Visible = 1
- '''''''Visible数值0隐藏,1新窗口'''''''
-
- Wscript.Sleep 5000
- Set O = IE.Document
- Do While True
- Wscript.Sleep 20000
- O.Location.Reload(True)
- If Err <> 0 Then
- Wscript.Quit
- End If
- Loop
复制代码
[ 本帖最后由 fastslz 于 2008-4-21 20:07 编辑 ] |