属性 IHtmlElementCollection.all 被 HTML 文件中的脚本标记破坏

发布于 2025-01-02 17:57:44 字数 1079 浏览 2 评论 0原文

我在使用 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>      

迭代器将再次找到文件的所有元素,这要多得多。有谁知道为什么会发生这种情况?

I am having a bit of trouble with IHtmlElementCollection used from Delphi XE2. My document looks something like this, and I load it into 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>

When I try to iterate over all elements in the document using the IHtmlDocument2 interface, the "all" property will only contain the elements up to the script, for a total of 5 IHtmlElement objects. After that, there are no more elements to find.

However, when I remove the tag:

<script type="text/javascript" src="Header.js" ></script>      

the iterator will once again find all elements of the file, which is a great deal more. Does anyone know why this happens?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文