不用脚本语言也能得到。
uses
MSHTML;
var
Window: IHTMLWindow2;
begin
with ActiveFormControl.ClientSite as IServiceProvider do
QueryService(IHTMLWindow2,IID_IHTMLWindow2,Window);
Edit1.Text := Window.location.toString
// 当前浏览嚣地址
Edit2.Text := Window.location.hostname
// 当前浏览器主机
Window.Close
//关闭当前浏览器
end;