维基百科的XHTML-MP示例:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.1//EN"
"http://www.openmobilealliance.org/tech/DTD/xhtml-mobile11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Hello</title>
</head>
<body>
<p>Hello <a href="http://example.org/">world</a>.</p>
</body>
</html>
这会导致W3C 验证失败,并出现错误Input is not proper UTF-8,指示编码!字节:0xA9 0x20 0x32 0x30
即使您添加<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
并告诉验证器它是 UTF8,它也会给出此错误。
如果 XHTML-MP DOCTYPE 被删除,它可以正常工作。什么是交易?