设置input type=file只读并实现文件上传

发布时间:2020-04-30编辑:脚本学堂
本文介绍了设置input type=file属性为只读,且不影响文件上传的方法,有需要的朋友参考下。

使用如下方法,未能实现:
设置readonly=true
设置disable
设置this.blur()
通过javascript来控制

都不行,因为只要是readOnly或disable,都无法弹出选择文件的窗口,即使用javascript实现了弹出,上传时也不行(ASP.net中)。
让他没有焦点,设置了hideFocus=true也不行,翻阅MSDN,input type=file的所有属性,终于还是找到了
 

复制代码 代码示例:
<INPUT class="text" id="fileUpload" style="WIDTH: 500px;cursor:hand" type="file" name="fileUpload"
UNSELECTABLE="on">