我正在尝试使用第一个文件中的选定文件填充第二个文件输入。
我已经对此进行了调查,出于安全原因,无法从一个文件输入中获取完整路径 - 只有文件名。这没有任何帮助,因为其他文件输入将无法上传,因为它无法找到该文件。
例子:
<input type="file" id="1" /> - User browse the file by clicking on this input
<input type="file" id="2" /> - This input gets the value from the other file input
我想这样做的原因是因为我正在 Wordpress 中构建一个网络应用程序,它允许用户将照片上传到 Facebook,但我也将同一张照片附加到 wp 帖子中。我不希望他们必须为每个输入选择文件。
有没有办法使用 PHP 和 jQuery 来实现这一点?