您的位置:首页 > 移动开发

...append HTML Text to a TWebbrowser Document?

2006-01-31 23:12 337 查看
http://www.swissdelphicenter.ch/en/showcode.php?id=2148

{1. ----------------------------------------------------------------}

uses
MSHTML;

procedure TForm1.Button1Click(Sender: TObject);
var
Range: IHTMLTxtRange;
begin
Range := ((WebBrowser1.Document as IHTMLDocument2).body as
IHTMLBodyElement).createTextRange;
Range.collapse(False);
Range.pasteHTML('<br><b>Hello!</b>');
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
Webbrowser1.Navigate('www.google.ch');
end;

{----------------------------------------------------------------}

{2. ----------------------------------------------------------------}

unit Unit1;
// by Sprint

interface

uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, OleCtrls, SHDocVw, MSHTML, StdCtrls;

type
TForm1 = class(TForm)
WebBrowser1: TWebBrowser;
procedure FormCreate(Sender: TObject);
procedure WebBrowser1DocumentComplete(Sender: TObject;
const pDisp: IDispatch; var URL: OleVariant);
private
{ Private-Deklarationen }
FirstRun: Boolean;
public
{ Public-Deklarationen }
end;

var
Form1: TForm1;

implementation

{$R *.dfm}
{----------------------------------------------------------------}

procedure TForm1.FormCreate(Sender: TObject);
begin
FirstRun := True;
WebBrowser1.Navigate('about:blank');
end;

{----------------------------------------------------------------}

procedure TForm1.WebBrowser1DocumentComplete(Sender: TObject;
const pDisp: IDispatch; var URL: OleVariant);
var
WebDoc: HTMLDocument;
WebBody: HTMLBody;
begin
if
FirstRun then
if
pDisp = WebBrowser1.Application then
begin
FirstRun := False;
WebDoc := WebBrowser1.Document as HTMLDocument;
WebBody := WebDoc.body as HTMLBody;
WebBody.insertAdjacentHTML('BeforeEnd', '<h1>Hello World!</h1>');
end;
end;

{----------------------------------------------------------------}

end.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: