|
主题: 为什么要下载日文???
|
 郭夏设计
职务:普通成员
等级:1
金币:0.0
发贴:17
注册:2003/11/8 14:38:19
|
#12004/1/1 0:38:09
我最近再学习做网页,借用了别人的模板 可是是个日文的每次登陆都要下载日文支持 很不方便 请问怎么才可以去掉下载日文的代码???
|
 =ridincal=
职务:管理员
等级:7
金币:20.0
发贴:5886
注册:2004/1/13 11:47:04
|
#22004/1/1 0:52:34
重新设置页面的字符集: <meta HTTP-EQUIV=Content-Type content="text/html; charset=gb2312">
|
 郭夏设计
职务:普通成员
等级:1
金币:0.0
发贴:17
注册:2003/11/8 14:38:19
|
#32004/1/2 21:05:45
我来试试^_^
|
 郭夏设计
职务:普通成员
等级:1
金币:0.0
发贴:17
注册:2003/11/8 14:38:19
|
#42004/1/2 21:14:01
源文件是<html> <head> <title>Reder machine</title> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> </head> <frameset rows="1*,25" frameborder="NO" border="0" framespacing="0"> <frameset rows="64,1*" frameborder="NO" border="0" framespacing="0"> <frame name="topFrame" scrolling="NO" noresize src="html/menu.html" frameborder="NO" marginwidth="0" marginheight="0" > <frame name="mainFrame" src="html/main.html" marginwidth="0" marginheight="0" frameborder="NO"> </frameset> <frame name="bottomFrame" scrolling="NO" noresize src="html/bottom.html" marginwidth="0" marginheight="0" frameborder="NO"> </frameset> <noframes><body bgcolor="#FFFFFF">
</body></noframes> </html>
|
 大当家
职务:普通成员
等级:3
金币:1.0
发贴:767
注册:2001/12/8 20:02:19
|
#52004/1/3 1:37:44
定义编码:
<head> <title>Reder machine</title> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> </head> <frameset rows="1*,25" frameborder="NO" border="0" framespacing="0"> <frameset rows="64,1*" frameborder="NO" border="0" framespacing="0"> <frame name="topFrame" scrolling="NO" noresize src="html/menu.html" frameborder="NO" marginwidth="0" marginheight="0" > <frame name="mainFrame" src="html/main.html" marginwidth="0" marginheight="0" frameborder="NO"> </frameset> <frame name="bottomFrame" scrolling="NO" noresize src="html/bottom.html" marginwidth="0" marginheight="0" frameborder="NO"> </frameset> <noframes><body bgcolor="#FFFFFF">
</body></noframes> </html>
|