就像标题所说的那样..有没有一种方法可以使其与IE一起使用?

我在用着:

document.getElementById('loadingImage').style.visibility='visible';


对于

<img id="loadingImage" src="images/25.gif" style="padding:0px;margin-bottom:-7px;visibility:hidden;">


但这不起作用。谢谢。

编辑:
用这个alert then reload page IN detect file extension upload script列表被调用:

function TestFileType( fileName, fileTypes ) {
if (!fileName) return;

dots = fileName.split(".")
//get the part AFTER the LAST period.
fileType = "." + dots[dots.length-1];

if (fileTypes.join(".").indexOf(fileType) != -1) {
   document.getElementById('loadingImage').style.visibility='visible';
   return true;
} else {
   alert('Please select (.w3g) file only!');
   return false;
}
}




<input name="replay_file" id="replay_file" type="file" accept=".w3g*"/>
<input type="submit" id="upload_file" value="Upload" name="uploadReplay" onClick="return TestFileType(this.form.replay_file.value, ['w3g','.w3g']);" />
<img id="loadingImage" src="images/25.gif" style="padding:0px;margin-bottom:-7px;visibility:hidden;">


PS:这不是重复的问题,因为其他问题并不那么相关。

最佳答案

这两个变化如何:

将this.form.replay_file.value替换为:

document.getElementById('replay_file').value


并在此行的末尾添加缺少的分号:

dots = fileName.split(".");




顺便说一句,您将函数的第二个参数作为数组并将其连接到字符串。为什么不将其作为字符串传递呢?

此外,在2个数组成员中,'w3g'将永远不匹配(仅'.w3g'可能匹配),因为您总是查找以点开头的字符串...

并建议:与返回类型一致。如果期望此函数返回布尔值,则第一行应更改为:

if (!fileName) return false;

10-07 14:40