Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,假设我们有一个元素“汽车”,其中包含诸如颜色、车轮等子元素,每个元素都有自己的文本,例如:颜色:红色和车轮四。但是“汽车”本身可以包含像宝马这样的文字吗?
Yes. It's called mixed content e.g.:
<root> <element>abc<child>xyz</child>def<child>nop</child>hij</element> </root>
is valid xml.
是的,这是允许的,并且 XML 格式正确。无论如何,如果可能的话,你应该避免这样做。