我刚开始学习HTML,我正在使用MAC并使用Sublime作为我的文本编辑器。我写了6行HTML代码但不幸的是它在我的浏览器上给出了这个奇怪的符号输出 - 可能是什么问题?我认为这与我的计算机上的系统或浏览器设置有关。
My output on my Chrome/Safari Browser
任何建议都将不胜感激,谢谢!
答案 0 :(得分:1)
这是一个编码问题。您必须通过元标记在HTML头中设置正确的编码:
<meta http-equiv="Content-Type" content="text/html"; charset="UTF-8">
答案 1 :(得分:1)
您需要确保默认编码设置为UTF-8。
以下是默认设置的摘录。 您需要将其添加到您的用户设置。
转到您的用户设置:Preferences > Settings - User
并粘贴代码段。
// Encoding used when saving new files, and files opened with an undefined
// encoding (e.g., plain ascii files). If a file is opened with a specific
// encoding (either detected or given explicitly), this setting will be
// ignored, and the file will be saved with the encoding it was opened
// with.
"default_encoding": "UTF-8",
答案 2 :(得分:0)
首先尝试删除空白,然后查看是否添加了任何不可见的字符。如果这不起作用,请检查文件的编码。你可能有一个charset问题。您可以做的另一件事是尝试使用另一个编辑器和/或其他浏览器来查看错误是否仍然存在。如果字符集或不可见字符不是问题,这将帮助您更容易地找出问题的根源。
点击此处。