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.
无论如何使用 Lynx 纯文本浏览器正确显示井号?
使用 & 磅分号它只显示顶部带有重音的 au。使用 £,没有任何显示。
谢谢。
我猜您的 html 是用其他字符集编码编写的,而不是 Web 服务器告诉客户端的。最简单的解决方法是添加
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
到你的<head>标签。另一种方法是让 Web 服务器发送正确的标头。例如:
<head>
Content-Type: text/html; charset=utf-8
请注意,“ utf-8”只是一个示例。将其替换为您的实际编码。
utf-8