WEB开发网
开发学院软件开发Delphi 直接修改TWebBrowser显示内容 阅读

直接修改TWebBrowser显示内容

 2006-02-04 13:51:26 来源:WEB开发网   
核心提示:PRocedure TForm1.Button1Click(Sender: TObject); begin Webbrowser1.Navigate('about:blank');end; procedure TForm1.Button2Click(Sender: TObject); var V: Ol

PRocedure TForm1.Button1Click(Sender: TObject);
begin 
 
Webbrowser1.Navigate('about:blank');
end;

procedure TForm1.Button2Click(Sender: TObject);
var
 
V: OleVariant;
begin 
 V := WebBrowser1.Document;
  s := '<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head><body>'+
    '<style type="text/CSS">' +
    'body {font-family: "宋体", "Times New Roman"; font-size: 12px;margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;}' +
    '</style><b>Welcome!</b></body>';
  V.Script.Document.Body.InnerHTML := s;
end;

Tags:直接 修改 TWebBrowser

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接