How to Execute a JavaScript Code on a TWebBrowser Document

The TWebBrowser Delphi control provides access to the Web browser functionality from your Delphi applications.

Here’s how to execute a custom script (JavaScript or VBScript) function on a HTML document loaded in the TWebBrowser control:

uses MSHTML_TLB, SHDocVw;
procedure ExecuteScript(doc: IHTMLDocument2; script: string; language: string) ;
begin
if doc <> nil then
begin
     if doc.parentWindow <> nil then
       doc.parentWindow.ExecScript(script, Olevariant(language)) ;
end;
end;

Usage (in some Button OnClick event handler, for example):

var
   script : string;
begin
//locate the first element with ID attribute = "main" and show its tag
   script := ‘var elemMain = document.getElementById("main") ; if (elemMain != null) { alert(elemMain.tagName) ; }’;
   ExecuteScript(EmbeddedWB1.Document as IHTMLDocument2, script, ‘javascript’)
end;

Note: More TWebBrowser Tips’n’Tricks!

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据