IHTMLxxxxx 的问题! |
尚未結案
|
heartache
一般會員 發表:9 回覆:9 積分:3 註冊:2003-10-12 發送簡訊給我 |
首先祈祷一下,mshtml.dll提供的接口未免也过多了,太杂了 我想得到一个html文件中的table里的内容 这是我写的一段程序 ,各位高手@ 那怎么获得内容?
var
doc3:IHTMLDocument3;
coll:IHTMLElementCollection;
table:IHTMLtable;
row:IHTMLTableRow;
cell:IHTMLTableCell;
ole:olevariant;
orow,ocell,otable:olevariant; doc3:=webbrowser1.document as IHTMLDocument3;
coll:=doc3.getElementsByTagName('table');
len:=coll.length;
for i:=0 to len-1 do
begin
orow:=coll.item(i,varempty);
showmessage(inttostr(orow.cells.length));
end; i cant ..... 發表人 - heartache 於 2003/11/17 00:54:36 發表人 - heartache 於 2003/11/17 00:55:02
|
heartache
一般會員 發表:9 回覆:9 積分:3 註冊:2003-10-12 發送簡訊給我 |
这是国外的一个程序,好象运行错误! procedure TForm1.Button1Click(Sender: TObject);
var
i, j: integer;
ovTable: OleVariant;
begin
ovTable := WebBrowser1.OleObject.Document.all.tags('TABLE').item(0); // I'm using the first TABLE on the page as an example only
for i := 0 to (ovTable.Rows.Length - 1) do
begin
for j := 0 to (ovTable.Rows.Item(i).Cells.Length - 1) do
begin
Memo1.Lines.Add(ovTable.Rows.Item(i).Cells.Item(j).InnerText;
end;
end; end;
|
AB
高階會員 發表:166 回覆:262 積分:125 註冊:2003-08-21 發送簡訊給我 |
|
Jasonwong
版主 發表:49 回覆:931 積分:581 註冊:2006-10-27 發送簡訊給我 |
|
Ktop_Robot
站務副站長 發表:0 回覆:3511 積分:0 註冊:2007-04-17 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |