作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法迭代 IHTMLElementCollection?
比如
var
e : IHTMLLinkElement;
elementCollection:IHTMLElementCollection;
begin
for e in elementCollection do
showmessage(e.caption);
end;
我知道有一个名为 _newEnum 的属性,但是据我所知,delphi 不支持它。
更新:显然链接是 IHTMLElement 而不是 IHTMLLinkElement
最佳答案
for I := 0 to Pred(elementCollection.length) do
begin
e := elementCollection.item(I, EmptyParam) as IHTMLElement;
//...
end;
关于delphi - 迭代 IHTMLElementCollection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7712410/
有没有办法迭代 IHTMLElementCollection? 比如 var e : IHTMLLinkElement; elementCollection:IHTMLElementCollect
伙计们:我在对象帕斯卡编程中遇到了一个关于“如何获取由多个 IHTMLElements 组成的 IHTMLElementCollection obj”的问题,我的代码如下: function TExD
我是一名优秀的程序员,十分优秀!