Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面上有一个文件浏览器,使用
<input type="file" />
现在点击浏览按钮,我需要显示一个 JS“确认”弹出窗口。只有在该弹出窗口上单击“确定”时,我应该显示文件浏览器,否则它应该只是取消(不显示文件浏览器/选择器窗口)
有可能实现这一目标吗?
$('input[type="file"]').click(function(){ return confirm("Are you sure you want to see me dance?"); });
现场演示
试试这个:
<input type="file" onclick="return confirm('Continue ?');"/>
DEMO
或使用 onclick 事件处理程序:
$('input[type=file]').click(function(){ return confirm("Continue ?"); });
DEMO2