请教如何去掉“立即投注”及立即投注以下的哪些文字等。#include <IE.au3>
$Form1 = GUICreate("Form1", 600, 480, 326, 333)
$oIE = _IECreateEmbedded()
GUICtrlCreateObj($oIE, 0, 0, 600, 480)
_IENavigate($oIE, '')
GUISetState()
_time()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
EndSwitch
WEnd
Func _time()
$s_html = '<html><iframe name="I1" marginwidth="0" marginheight="0" width="800" vspace="-230" hspace="-230" align="middle" height="780" scrolling="yes" border="0" frameborder="0" src=http://baidu.lehecai.com/lottery/draw/list/50?lottery_type=50&page=1&ds=2011-01-01&de=2011-06-15></iframe></html>'
_IEBodyWriteHTML($oIE, $s_html)
$oIE.Document.body.Scroll = 'no'
EndFunc ;==>_time
|