在输入类型文件上添加JavaScript警告可以防止在Internet Explorer中出现打开文件对话框

Adding a JavaScript alert on the input type file prevents the open file dialog from appearing in Internet Explorer

本文关键字:文件 Explorer Internet 对话框 类型 输入 添加 JavaScript 警告      更新时间:2023-09-26

我有一个输入类型="file"。当我试图把onclick = "alert('test')";,它显示在Internet Explorer和Firefox,但在Internet Explorer中,我按下OK按钮后,消息将消失,什么也没有发生,在Firefox中:消息消失后,打开文件对话框正常显示。JavaScript消息消失后,如何在Internet Explorer中显示打开文件对话框?

对于Internet Explorer,我使用的是Internet Explorer 9.

尝试添加一个返回值到…

onclick="alert('test');return true;"