gpt4 book ai didi

javascript - 从某些 JS 打开 Windows 资源管理器时如何设置默认驱动器/文件夹

转载 作者:行者123 更新时间:2023-11-30 05:53:22 25 4
gpt4 key购买 nike

JS打开windows资源管理器,让用户选择一个文件,然后打开文件。我想默认它每次都在同一个文件夹中查找。

<html>
<head>
<script type="text/javascript">
function getFilename()
{
<!-- open the file -->
var thefile = document.getElementById('thefile');
window.open(thefile.value,'mywindow','width=400,height=200')
}
</script>
</head>
<body>
<form>
<!-- get the filename -->
<p>FCT scanned files search screen</P>
<p>Click Browse to select file</P>
<input type="file" id="thefile" onchange="getFilename()" />
</form>
</body>
</html>

最佳答案

你正在寻找的东西是不可能的(至少在 IE 中)。出于安全原因,您无法使用文件输入字段更改任何内容。您甚至无法通过脚本更改输入字段的值(只能通过对话窗口)。

您可以通过破解 Windows 注册表中的某些内容来为您自己的浏览器执行此操作,但我完全不确定。

克。瑞克

关于javascript - 从某些 JS 打开 Windows 资源管理器时如何设置默认驱动器/文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13418083/

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