White space is required before the encoding pseudo attribute in the XML declaration.
时间: 2023-12-03 10:42:14 浏览: 189
jquery.pseudo.js
Yes, according to the XML specification, a single white space character is required before any pseudo-attribute in the XML declaration. For example:
```
<?xml version="1.0" encoding="UTF-8"?>
```
Without the white space character before the "encoding" pseudo-attribute, the XML document would not be well-formed and may not be parsed correctly by XML processors.
阅读全文