用dreamweaver 制作网页出现乱码怎么回事
发布网友
发布时间:2022-04-28 17:06
我来回答
共4个回答
热心网友
时间:2022-06-19 21:21
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!--编码控制不能少-->
<meta name="keywords" content="keywords,keywords,keywords,keywords">
<!--网页关键词-->
<meta name="description" content="description">
<!--网页描述-->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!--网页渲染内核-->
<!--mobile start手机端需加-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, minimal-ui" />
<meta name="apple-mobile-web-app-title" content="webei" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
<meta name="format-detection" content="telephone=no,address=yes" />
<!--mobile end-->
<title>网页标题</title>
<link rel="shortcut icon" href="favicon.ico">
<!--网页小图标-->
<link rel="stylesheet" href="css/style.css">
<!--网页必要的css样式-->
<script type="text/javascript" async src="js/loadCommon.js"></script>
<!--网页必要的js样式-->
</head>
<body>
<!--开始框架的搭建-->
<li>测试</li>
</body>
</html>
在你的head标签里添加meta标签
控制“编码格式”
热心网友
时间:2022-06-19 21:21
编码方式不对~ charset="utf-8"
热心网友
时间:2022-06-19 21:22
在进行网页的制作时请注意其编码方式
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><!---这里就是编码 还可以是charset=utf-8--->
<title>test</title>
</head>
<body>
网站要定义其编码
</body>
</html>
这样就不会有什么错了 ..
热心网友
时间:2022-06-19 21:22
换个浏览器预览