我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
Obsolete since Gecko 10.0 (Firefox 10.0 / Thunderbird 10.0 / SeaMonkey 2.7)
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Returns the encoding as determined by the XML declaration. Should be null
if unspecified or unknown.
If the XML Declaration states:
<?xml version="1.0" encoding="UTF-16"?>
...the result should be "UTF-16".
However, Firefox 3.0 includes information on endianness (e.g., UTF-16BE for big endian encoding), and while this extra information is removed as of Firefox 3.1b3, Firefox 3.1b3 is still consulting the file's encoding, rather than the XML Declaration as the spec defines it ("An attribute specifying, as part of the XML declaration, the encoding of this document.").
Specification
- https://www.w3.org/TR/DOM-Level-3-Cor...ment3-encoding
- This has been removed from DOM Core Level 4WD