delphi IE编程 ( 积分: 100 )

  • 主题发起人 主题发起人 xysj
  • 开始时间 开始时间
X

xysj

Unregistered / Unconfirmed
GUEST, unregistred user!
那位大哥知道指点一下!!小弟查了了久的MSDN都没有找到方法
网页中有有一个树形的控件(C#开发的网页)也就是相当于delphi 的 TreeView,我现在要用delphi 判断应tree 的子TreeView 是否被选中 那位大哥知道怎么做!!!!谢了
QQ:149245760



if( pos( 'TreeMain.aspx' , url )>0 ) then
begin
doc:=CurWebrowser.Document as IHTMLDocument2;
all:=doc.all;
len:=all.length ;

for i:=0 to len-1 do begin

dispatch:=all.item(i,0);
if succeeded(dispatch.QueryInterface(IHTMLDOMNode,node)) then

begin
//if node.nodeName='tvHouse' then



end;

end;
 
没有一人个回答,自已顶一下
 
你这个难度很大哦,搞不来,因为网页里面就不是普通的winform这种模式的,各种系统消息也不是这样的,所以很难哈。
 
做这,还是js吧
 
后退
顶部