XBa*_*000 5 delphi google-chrome
是否有使用delphi嵌入式chrome的经验?delphichromiumembedded.如何访问其HTML文档?比如为Editbox分配一个值
有关示例,请参阅demos\guiclient目录.
更新:在iGoogle页面上设置输入字段文本的示例:
procedure TMainForm.actDomExecute(Sender: TObject);
var
q: ICefDomNode;
begin
crm.Browser.MainFrame.VisitDomProc(
procedure (const doc: ICefDomDocument)
var
q: ICefDomNode;
begin
// "q" is the ID of the text input element
q := doc.GetElementById('q');
if Assigned(q) then
q.SetElementAttribute('value', 'Hello, world');
end
);
end;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
4707 次 |
| 最近记录: |