0
我想獲取文件位置作爲NW.JS中的變量。我從nw.js文檔中獲得了這段代碼,但無法弄清楚如何使用它來返回文件位置。我是否需要編寫一個腳本來使用id「fileDialog」來獲取結果? https://github.com/nwjs/nw.js/wiki/file-dialogs如何獲取文件位置作爲NWJS中的變量
**HTML**
<input style="display:none;" id="fileDialog" type="file" />
**Javascript**
<script>
function chooseFile(name) {
var chooser = document.querySelector(name);
chooser.addEventListener("change", function(evt) {
console.log(this.value);
}, false);
chooser.click();
}
chooseFile('#fileDialog');
</script>
完美的作品!謝謝! – Marley