84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
正如您在螢幕截圖中看到的那樣。我選擇一個文件,保留彈出視窗而不刷新頁面,然後再次打開它,文件輸入仍然是我選擇的文件。
<input id="fileuploadbannermobile" type="file" name="files[]">
我在彈出視窗打開時嘗試此操作。
$("#fileuploadbannermobile").val('');
但似乎沒有解決問題。
將輸入值設為空字串或 null 肯定可行。
嘗試在 vanila javascript 中將值設為「」或 null
yourInput.value = null 或 yourInput.value = ""
yourInput.value = null
yourInput.value = ""
也要檢查您是否將這些值設定為正確的輸入
了解您使用的瀏覽器也很有用。
將輸入值設為空字串或 null 肯定可行。
嘗試在 vanila javascript 中將值設為「」或 null
yourInput.value = null
或yourInput.value = ""
也要檢查您是否將這些值設定為正確的輸入
了解您使用的瀏覽器也很有用。