在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
unit Unit1; interface uses Winapi.Windows,Winapi.Messages,System.SysUtils,System.Variants,System.Classes,Vcl.Graphics, Vcl.Controls,Vcl.Forms,Vcl.Dialogs,Vcl.OleCtrls,SHDocVw,Vcl.StdCtrls; type TForm1=class(TForm) Edit1:TEdit; Button1:TButton; WebBrowser1:TWebBrowser; procedure Button1Click(Sender:TObject); procedure WebBrowser1NewWindow3(ASender:TObject;var ppDisp:IDispatch; var Cancel:WordBool;dwFlags:Cardinal;const bstrUrlContext,bstrUrl:WideString); private {Private declarations} public {Public declarations} end; var Form1:TForm1; implementation {$R*.dfm} procedure TForm1.Button1Click(Sender:TObject); begin WebBrowser1.Navigate(Edit1.text); end; procedure TForm1.WebBrowser1NewWindow3(ASender:TObject;var ppDisp:IDispatch; var Cancel:WordBool;dwFlags:Cardinal;const bstrUrlContext,bstrUrl:WideString); begin Cancel:=True; TWebBrowser(ASender).Navigate(bstrUrl); WebBrowser1.Silent:=True; edit1.Text:=bstrUrl; end; end. 为什么一定要是 WebBrowser1NewWindow3 呢 ? |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论