gpt4 book ai didi

javascript - 防止 html 输入类型文件显示打开的对话框

转载 作者:行者123 更新时间:2023-11-27 22:38:20 24 4
gpt4 key购买 nike

长话短说,我需要能够阻止 input type="file" 的默认操作。换句话说,我不想在用户点击“浏览”或“选择文件”时显示系统打开的对话框。我已经让替换对话框正常工作,但系统打开的对话框仍然出现。

下面是我目前正在尝试完成的示例。 (PS:我用的是Chrome 21)

<html>
<head>

<script type="text/javascript">
<!--

file_onclick = function()
{
// Show custom dialog instead...
event.stopPropagation(); // Doesn't work
return false; // Neither does this
};

//-->
</script>

</head>
<body>
<input type="file" onclick="javascript: file_onclick();" />
</body>
</html>

有什么想法吗?

最佳答案

怎么样

<input type="file" onclick="return false" />

或者如果你需要file_onclick函数

<html>
<head>

<script type="text/javascript">
<!--

file_onclick = function()
{
// Show custom dialog instead...
return false;
};

//-->
</script>

</head>
<body>
<input type="file" onclick="return file_onclick();" />
</body>
</html>

关于javascript - 防止 html 输入类型文件显示打开的对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12555093/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com