0
我試圖採取以下方式文件輸入:HTML文件上傳
Input file: <input type="file" name="-f" id="fa">
我想補充的HTML鏈接(upload example)
,使其上傳的示例文件上單擊它,無需打開文件上傳窗口。我試過以下內容:
<a href="" onclick="document.getElementById('fa').files[0].name = 'http://localhost/EXAMPLE/example.txt'; return false; ">(upload example)</a>
但它不工作。我該怎麼辦呢?