我的 HTML 代码如下。
<form action="index.php" method="post" enctype="multipart/form-data">
<input type="text" name="file2" id="FileField" value="( .xls / .xlsx )" />
<input type="file" id="file1" name="file1" style="visibility:hidden;width: 0" onchange="getElementById('FileField').value = this.value;" />
<input type="button" id ="browse" onclick="document.getElementById('file1').click()" />
<input id="scan" type="submit" value="click" />
</form>
当我点击 IE 中的“点击”按钮时,什么也没有发生。但是相同的代码在所有其他浏览器中都可以使用。
谢谢你。