HTML:网页字体的编码有关问题
HTML:网页字体的编码问题
问题概要:
使用DreamWeaver的框架,建的工程,初始的各部分都正常,在调用自己的网页显示在框架里后自己做的网页成了乱码!
如果用IE直接打开自己做的网页,正常。
问题详细说明:
我在UntitledFrame-3.html中响应事件(就是一个网页连接),在mainFrame中打开该连接所指向的网页,显示为乱码。
我自己写的那个被连接的网页,头:
谢谢帮忙!
------解决方案--------------------
<!doctype html><head><meta http-equiv=content-type content="text/html; charset=UTF-8">
=======》=》
<!doctype html><head><meta http-equiv=content-type content="text/html">
==============================================
<meta http-equiv=content-type content="text/html; charset=UTF-8">
===================》》》》》
<meta http-equiv=content-type content="text/html">
------解决方案--------------------
charset=UTF-8
换成:
charset=gb2312
------解决方案--------------------
编码字符集的问题,通用的就是UTF-8,
问题概要:
使用DreamWeaver的框架,建的工程,初始的各部分都正常,在调用自己的网页显示在框架里后自己做的网页成了乱码!
如果用IE直接打开自己做的网页,正常。
问题详细说明:
- HTML code
<!doctype html><head><meta http-equiv=content-type content="text/html; charset=UTF-8"><title>无标题</title> </head> <frameset rows="109,*" cols="*" frameborder="no" border="0" framespacing="0"> <frame src="UntitledFrame-2.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame"> <frameset rows="*" cols="251,*" framespacing="0" frameborder="no" border="0"> <frame src="UntitledFrame-3.html" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="leftFrame"> <frame src="Untitled-1.html" name="mainFrame" id="mainFrame" title="mainFrame"> </frameset> </frameset> <noframes><body> </body> </noframes></html>
我在UntitledFrame-3.html中响应事件(就是一个网页连接),在mainFrame中打开该连接所指向的网页,显示为乱码。
我自己写的那个被连接的网页,头:
- HTML code
<!doctype html> <head> <meta http-equiv=content-type content="text/html; charset=UTF-8"> <title>无标题文档</title> ... </HEAD>
谢谢帮忙!
------解决方案--------------------
<!doctype html><head><meta http-equiv=content-type content="text/html; charset=UTF-8">
=======》=》
<!doctype html><head><meta http-equiv=content-type content="text/html">
==============================================
<meta http-equiv=content-type content="text/html; charset=UTF-8">
===================》》》》》
<meta http-equiv=content-type content="text/html">
------解决方案--------------------
charset=UTF-8
换成:
charset=gb2312
------解决方案--------------------
编码字符集的问题,通用的就是UTF-8,