每个人都希望每天都是开心的,不要因为一些琐事扰乱了心情还,闲暇的时间怎么打发,关注图老师可以让你学习更多的好东西,下面为大家推荐直接修改TWebBrowser显示内容,赶紧看过来吧!
【 tulaoshi.com - 编程语言 】
  procedure TForm1.Button1Click(Sender: TObject); 
  begin 
    Webbrowser1.Navigate('about:blank');
  end; 
  
  procedure TForm1.Button2Click(Sender: TObject); 
  var 
    V: OleVariant; 
  begin 
    V := WebBrowser1.Document;
    s := 'htmlheadmeta http-equiv="Content-Type" content="text/html; charset=gb2312"/headbody'+
         '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;}' +
         '/stylebWelcome!/b/body';
    V.Script.Document.Body.InnerHTML := s;
  end; 
来源:http://www.tulaoshi.com/n/20160219/1603882.html
看过《直接修改TWebBrowser显示内容》的人还看了以下文章 更多>>