标签: javascript html web
我想点击按钮打开一个窗口并选择一个文件。 我正在使用此代码进行选择:
<button onclick="document.getElementById('file-input').click();">Open</button> <input id="file-input" type="file" name="name" style="display: none;" />
如何保存路径? (例如c:\temp\song.mp3)
c:\temp\song.mp3
我不需要下载文件。这是一个本地文件。