input中获取文件路径使用html
时间: 2024-05-24 08:11:50 浏览: 246
取得input要素的文件路径
<input type="file" name="file" id="file">
<script>
const fileInput = document.getElementById('file');
fileInput.addEventListener('change', (event) => {
const filePath = event.target.value;
console.log(filePath);
});
</script>
阅读全文