在 Lynx 浏览器中显示井号?

发布于 2024-08-22 19:20:24 字数 100 浏览 6 评论 0原文

有没有办法使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情旳空白 2024-08-29 19:20:24

我猜你的 html 是用其他字符集编码编写的,而不是 Web 服务器告诉客户端的编码。最简单的修复方法是添加

<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />

到您的 标记中。另一种方法是让 Web 服务器发送正确的标头。例如:

Content-Type: text/html; charset=utf-8

请注意,“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

<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />

to your <head> tag. Another approach is to make the web server send the correct header. For instance:

Content-Type: text/html; charset=utf-8

Note that "utf-8" is just an example. Replace that with your actual encoding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文