我创建了一个导入XHTML 1.1 Strict模式的模式。我的许多元素都利用了XHTML架构中的block
和inline
组。
我遇到的问题是我创建的XML文档必须使用XHTML命名空间才能成功验证。
<example
xmlns="http://example.com/example.xsd"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<myElement>
<xhtml:p>This is my <xhtml:strong>paragraph</xhtml:strong>.</xhtml:p>
</myElement>
</example>
我想要做的是不需要在我的XML文档中使用XHTML命名空间。
<example xmlns="http://example.com/example.xsd">
<myElement>
<p>This is my <strong>paragraph</strong>.</p>
</myElement>
</example>
这样的事情可能吗?