正如标题所说..有没有办法让它与 IE 一起工作?
我正在使用:
document.getElementById('loadingImage').style.visibility='visible';
为了
<img id="loadingImage" src="images/25.gif" style="padding:0px;margin-bottom:-7px;visibility:hidden;">
但它不起作用。谢谢。
编辑: 正在调用列表此 警报然后重新加载页面检测文件扩展名上传脚本:
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:这不是一个重复的问题,因为其他问题没有那么相关。