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.
我遇到了 html 编码的问题。我在 PSPad 上工作。我在我的文件中将 utf-8 设置为字符集,并将 utf-8 设置为文件格式,它在 localhost 上看起来很好,但在服务器上却没有。当我将文件格式更改为 iso 时,它可以在服务器上运行,但不能在 localhost 上运行,当我关闭 PSPad 并重新打开文件时,它会完全破坏一些字符。你有什么解决办法吗?太烦人了!:) 谢谢K。
确保外部服务器也发送一个字符集声明。你用什么服务器软件?在 Apache 中,您可以通过添加具有以下内容的 .htaccess 文件来实现它:
AddCharset utf-8 .html
还要确保添加一个
<meta charset="utf-8">
声明 (HTML5) 或
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
到 HTML 文件头。
编辑:纠正错别字