使用cgi读取HTML文件后经过URL请求输出到IE端,结果在输出内容中,所有的JS都不可用,并且读取的图片不能显示GIF格式(PNG格式的可以正常显示)?
HTML code
<title>无标题文档</title>
<link href="images/style.css" rel="stylesheet" type="text/css" />
<script language="javascript">
function AlertWindow() {
confirm("确定恢复吗");
}
</script>
</head>
<body>
<div style="border: 6px ridge #00AAEC; background-color: #E7EEF6; height: 473px;">
<ul><li style="margin: 150px"></li>
<li style="text-align: center; ">学习林俊德心得体会恢复出厂设置后设备上全部数据将被删除,返回到最原始状态, </li>
<li style=" text-align: center; text-indent: -30px;">一般在发生不可挽回的错误导致系统异常时使用,通常不建议使用。 </li>
</ul>
<div ><input type="button" value="恢复出厂设置"
style="margin: 30pt;border: 5px outset #ECEADE; width: 200px; height: 30px; margin-left: 300px; background-color: #808080;" onclick="AlertWindow()"/></div>
</div>
</body>
</html>C/C++ code
void checksuccess(char name[16], char pw[16]){
QFile homePage("/home/factory.htm");
printf("<TITLE>factory</TITLE>\n");
QTextStream in(&homePage);
if (!homePage.open(QIODevice::ReadOnly)){
return ;
}
in.setCodec(QTextCodec::codecForName("UTF-8"));
QTextStream out(stdout);
out.setCodec(QTextCodec::codecForName("UTF-8"));
while(!in.atEnd()){
QString line = in.readLine();
out<<(line);
out.flush();
}
}
QT那边貌似没问题,换个非IE浏览器试试?