帮我写一段代码js,点击按钮,可以选择本地文件路径,并
时间: 2023-04-02 09:05:16 浏览: 129
选择文件路径
4星 · 用户满意度95%
将文件路径显示在页面上。
很高兴回答你的问题。以下是代码:
HTML:
<button onclick="chooseFile()">选择文件</button>
<p id="file-path"></p>
JavaScript:
function chooseFile() {
const input = document.createElement('input');
input.type = 'file';
input.onchange = function(event) {
const filePath = event.target.value;
document.getElementById('file-path').textContent = filePath;
};
input.click();
}
当用户点击按钮时,会弹出一个文件选择对话框,用户可以选择本地文件。选择完毕后,文件路径会显示在页面上。
阅读全文