在 Lynx 浏览器中显示井号?
有没有办法使用 Lynx 纯文本浏览器正确显示井号?
使用&号-磅-分号它只是显示au,上面有一个重音符号。 使用 £,则不显示任何内容。
谢谢。
Is there anyway to have a pound sign display correctly using Lynx text only browser?
using ampersand-pound-semicolon it just shows a u with an accent on top.
using £, nothing displays.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你的 html 是用其他字符集编码编写的,而不是 Web 服务器告诉客户端的编码。最简单的修复方法是添加
到您的
标记中。另一种方法是让 Web 服务器发送正确的标头。例如:
请注意,“
utf-8
”只是一个示例。将其替换为您的实际编码。I guess your html is written in some other charset encoding than what the web server is telling the client. The easiest fix is to add
to your
<head>
tag. Another approach is to make the web server send the correct header. For instance:Note that "
utf-8
" is just an example. Replace that with your actual encoding.