我的客户仅在 IE9 中存在网站问题(该页面在 Firefox 和 Chrome 中运行良好):
该网站在弹出窗口中有一个上传表单。处理后,弹出窗口关闭,上传的文件(图像)显示在主(顶部,“父亲”)页面。
弹窗代码如下:
<!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=utf-8" />
<title>..:: Upload Img ::..</title>
<link href="/css/admin.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript">
function fcnReload() {
top.showFotos('127d4efeef19abfcbc411507bd9d5de6', '_cookie.jpg|_f0.jpg');
}
</script>
</head>
<body onunload="fcnReload();">
<h3>Image uploaded - OK</h3>
Close the window<br /><br />
</body>
</html>
由于某些原因,上传的图片在 IE9 上没有显示,并且出现错误:
SCRIPT438:对象不支持属性或方法“showFotos”1.html,第 9 行字符 6。
更新父窗口时可能存在某种 IE 问题:link1,link2
函数 showFotos 代码:
function showFotos(session, names) {
var arrNames = names.split('|');
strNames = '';
for (var i=0; i<mdl_fotos; i++) {
if ((i==0) && (sel_mod==11)) {
document.getElementById('Preview-Color').src = '/uploads/'+session+arrNames[i+1];
document.getElementById('Preview-Color').style.width = '444px';
document.getElementById('Preview-Color').style.height = '350px';
strNames += ','+arrNames[i+1].replace('_','');
} else {
document.getElementById('ExtImg'+(i+1)).src = '/uploads/'+session+arrNames[i+1];
strNames += ','+arrNames[i+1].replace('_','');
}
}
if (arrNames[0] != '')
document.getElementById('Preview-Cookie').src = '/uploads/'+session+arrNames[0];
strSession = session;
strNames = arrNames[0].replace('_','')+strNames;
}