文件上传,用IE6\7\8 都正常,IE9也正常,但IE9启脚本调试模式document.inputForm.submit();就报拒绝访问。
代码如下。
<form name="inputForm" method="post" enctype="multipart/form-data" >
<table width="100%" border="0" class="tb" cellpadding="0" cellspacing="1">
<tr id="importType">
<td class="tblabel" >导入<span class="red">*</span> </td>
<td class="tbtext"> <input id="fileName" name="fileName" type="file" size="40" />
</td>
</tr>
</table>
</form>
<a class="btn02" onclick="subform();" >提交<div class="rb"></div></a>JS:
function subform(){
if(document.getElementById('fileName').value==null ||""==document.getElementById('fileName').value) {
alert('<fmt:message key="上传文件不能为空!"/>');
return false;
}
document.inputForm.submit();  }