文档类型不允许元素“span”这里?
我正在努力验证我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要告诉 XHTML 验证器以与其余代码不同的方式解析您的 JavaScript。您可以通过在脚本标记中使用 CDATA 块来完成此操作。
示例:
有关原因的更多信息,请参阅问题 什么时候脚本标签中需要 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:
For more information for as to why, see the question When is a CDATA section necessary within a script tag?