文档类型不允许元素“span”这里?

发布于 2024-11-28 04:10:17 字数 224 浏览 0 评论 0原文

我正在努力验证我的 XHTML。
在我的页面中,我动态创建了许多 HTML 元素(在 JS 中)。
例如,我有一个 for 循环,它解析一个保存 select 标签值的数组,然后我的 JS 代码使用给定的值创建 select。因此,我的 JS 包含引号(字符串)内的 HTML 元素。不幸的是,我无法验证我的 XHTML,因为验证器认为这些家伙是实际元素。

我该如何避免这种情况?有必要避免这种情况吗?

I am working on getting my XHTML validated.
In my page, I have dynamic creation (in JS) of many HTML elements.
For example, I have a for loop that parses an Array that hold value's of a select tag, and then my JS code created the select with the given values. Therefore, my JS contains HTML elements inside quotes (strings). Unfortunately, I cannot get my XHTML validated because the validator things that these guys are actual elements.

How do I avoid this? Is is necessary to avoid this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴意少年 2024-12-05 04:10:17

您需要告诉 XHTML 验证器以与其余代码不同的方式解析您的 JavaScript。您可以通过在脚本标记中使用 CDATA 块来完成此操作。

示例:

<script type="text/javascript">
//<![CDATA[
...code...
//]]>
</script>

有关原因的更多信息,请参阅问题 什么时候脚本标签中需要 CDATA 部分?

You'll need to tell the XHTML validator to parse your JavaScript different then the rest of your code. You can do this by using CDATA blocks in your script tags.

Example:

<script type="text/javascript">
//<![CDATA[
...code...
//]]>
</script>

For more information for as to why, see the question When is a CDATA section necessary within a script tag?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文