我在使用 Delphi XE2 的 IHtmlElementCollection 时遇到了一些麻烦。我的文档看起来像这样,我将它加载到 TWebBrowser。
<!DOCTYPE html>
<html>
<head>
<title>Test av skjema</title>
<script type="text/javascript" src="Header.js" ></script>
<style>
body{ font-family: 'Segoe UI'; font-size: 9pt; }
table{ background-color: silver; width=98%; }
td{ background-color: white; vertical-align: top; padding: 2px; }
.fullWidth{ width: 100%; border: 0px solid white; }
.noFrame{ border: 0px solid white; overflow: hidden; width=100%; }
.Header{ font-weight: bold; }
.Question{ font-size: 9pt }
.HelpText{ font-size: 8pt; color: navy; }
</style>
</head>
<body>
<form>
...
</form
</body>
</html>
当我尝试使用 IHtmlDocument2 接口遍历文档中的所有元素时,“all”属性将仅包含脚本之前的元素,总共 5 个 IHtmlElement 对象。在那之后,没有更多的元素可以找到。
但是,当我删除标签时:
<script type="text/javascript" src="Header.js" ></script>
迭代器将再次找到文件的所有元素,这要多得多。有谁知道为什么会这样?