html5能获取上传获取文件绝对路径吗?怎么获取?

我想请分析下,html5能获取上传获取文件绝对路径吗?怎么获取?
最新回答
嗝是迷路的屁

2024-10-30 19:13:46

<!DOCTYPE html>
<html>
<body>
<input type="file" id='up' oninput="get()" />
<script>
function get() {
let fup = document.getElementById('up');
console.log("本地文件路径:" + fup.value)
}
</script>
</body>
</html>