如何使用javascript將假值設置爲輸入類型文件?如何使用javascript將假值設置爲輸入類型文件?
我用這個JavaScript代碼
document.getElementById("test").value = "C:\fakepath\test.jpg";
用於設置假值轉換成輸入類型的文件ID test
。
,但顯示這樣
Uncaught InvalidStateError: Failed to set the 'value' property on 'HTMLInputElement': This input element accepts a filename, which may only be programmatically set to the empty string.
我想知道的錯誤文本,如何設置假值轉換成輸入類型的文件?
你不能 - 按照錯誤消息。 [你在做什麼](http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem)? –
爲什麼你想爲文件輸入設置一個假值? – Manav
除非用戶選擇它,否則您將無法從用戶磁盤獲取文件。錯誤是說你只能*清除*輸入(通過設置爲空字符串)。 –