























|
||||||||||||||||||||||||||||||||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() 評(píng)論# re: VB使用WebBrowser讀取網(wǎng)頁(yè)內(nèi)容 回復(fù) 更多評(píng)論2008-10-16 21:18 by work_man請(qǐng)問(wèn),如何調(diào)用呢?
# re: VB使用WebBrowser讀取網(wǎng)頁(yè)內(nèi)容 回復(fù) 更多評(píng)論2008-10-18 21:24 by kooyee看看這段代碼
Dim vDoc, vTag Dim i As Integer Set vDoc = WebBrowser1.Document For i = 0 To vDoc.All.Length - 1 '檢測(cè)所有標(biāo)簽 If UCase(vDoc.All(i).innerText) = "INPUT" Then '找到input標(biāo)簽 Set vTag = vDoc.All(i) # re: VB使用WebBrowser讀取網(wǎng)頁(yè)內(nèi)容 回復(fù) 更多評(píng)論2008-11-24 20:13 by 肖子詳Private Sub Command1_Click()
WebBrowser1.Navigate "http://www.baidu.com" End Sub Private Sub Command2_Click() Dim vDoc, vTag Dim i As Integer Set vDoc = WebBrowser1.Document For i = 0 To vDoc.All.Length - 1 '檢測(cè)所有標(biāo)簽 If UCase(vDoc.All(i).innerText) = "INPUT" Then '找到input標(biāo)簽 Set vTag = vDoc.All(i) End If Next Text1.Text = vTag End Sub 還是不可以?上面是我做的我想把讀到的內(nèi)容存到TEXT1.TEXT中? # re: VB使用WebBrowser讀取網(wǎng)頁(yè)內(nèi)容 回復(fù) 更多評(píng)論2008-11-24 20:34 by 肖子詳我試過(guò)了可以讀到網(wǎng)頁(yè)里的文字信息,TKS
但讀的HTML代碼.會(huì)亂碼. # re: VB使用WebBrowser讀取網(wǎng)頁(yè)內(nèi)容[未登錄](méi) 回復(fù) 更多評(píng)論2008-11-26 01:14 by kooyee是不是不支持unicode?
# re: VB使用WebBrowser讀取網(wǎng)頁(yè)內(nèi)容 回復(fù) 更多評(píng)論2010-01-23 11:25 by webyoungClick a arrow on a google web site automaticly.
-------------------------------------------------------------------------------- I want to write a code to click automaticly the "next arrow" or the "last arrow" on the bottom of the following web site. http://www.google.com/finance/stocks...rt=&sortOrder= I know the htmlText for these two arrow is as following: HTML Code: <DIV class=tpbd closure_hashCode_f042o7="42"> <DIV class=SP_arrow_next></DIV></DIV> <DIV class=tpsd>21 - 40 of 2658 rows</DIV> <DIV class=tpbd closure_hashCode_f042o7="41"> <DIV class=SP_arrow_previous></DIV></DIV> <DIV class=tpbd closure_hashCode_f042o7="40"> <DIV class=SP_arrow_first></DIV></DIV><SELECT class=tpdd closure_hashCode_f042o7="39"><OPTION value=10>10</OPTION><OPTION selected value=20>20</OPTION><OPTION value=30>30</OPTION></SELECT> <DIV class=tpsrd>Show rows:</DIV> But I can not find a way write it. If anybody can show me how to do it, will be deep appreciated.
|
||||||||||||||||||||||||||||||||||