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.
我想用 JavaScript 打开一个文件浏览器,并为这个文件浏览器设置一个默认目录。例如,我想将默认目录设置为“C:\My Documents”。
如何设置默认目录?用起来比较好<input type="file"/>,其他控件也还行。
<input type="file"/>
这是不可能的,因为让网站代码在机器上设置任何值是一种安全风险。
此外,您永远无法确定该目录是否存在。如果我在 Mac 上怎么办?我的东西在~/Pictures。如果我安装了 WindowsD:\怎么办?
~/Pictures
D:\
来自http://www.pcreview.co.uk/threads/automatically-put-a-default-filename-in-input-type-file-value.2192852/
<input type="file" value="YourDefaultPathAndFilename.AndExtension">