如何获取网页中当前鼠标下的连接地址
 
网上说用下面的几句就可以得了,而我却取不出来,为什么?:E := (WebBrowser1.Document as IHTMLDocument2).elementFromPoint(Mouse.CursorPos.X, Mouse.CursorPos.Y);
E := (WebBrowser1.Document as IHTMLDocument2).elementFromPoint(100, 100);
Label1.Caption := E.title;
Label1.Caption := E.innerText;到底要放在什么事件下呢?
用statusTestChange是取得出来。但是郊果不好。