如何在不使用匿名方法的情况下迭代Delphi Chromium Embedded中的DOM节点?

时间:2012-10-12 18:44:35

标签: delphi delphi-7 tchromium

Delphi Embedded Chrome

由于我的技能有限,我无法弄清楚如何在Delphi 7中做同样的事情,因为它不支持匿名方法!

1 个答案:

答案 0 :(得分:2)

procedure TheProcThatHandlesItAll(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

procedure TMainForm.actDomExecute(Sender: TObject);
begin
  crm.Browser.MainFrame.VisitDomProc(TheProcThatHandlesItAll);
end;