写了一个html页面,出现了乱码的情况,要怎么解决?
烟雨江南
烟雨江南 2016-12-19 09:53:33
0
2
1247
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
    中国
</body>
</html>


烟雨江南
烟雨江南

reply all(2)
数据分析师

I wrote an html page and the code was garbled. How to solve it? -PHP Chinese website Q&A-I wrote an html page and the code was garbled. How to solve it? -PHP Chinese website Q&A

Please watch and learn.

迷茫

可以在头部标签内加<meta charset="utf-8">来设置编码的格式

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title></title>
</head>
<body>
    中国
</body>
</html>

希望对你有用!

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template