Phương thức replace(): Phương thức này tìm kiếm một chuỗi để thay thế bằng một giá trị được xác định. Ví dụ với bản demo.
cách sử dụng JavaScript để lấy đường dẫn tệp đầy đủ
const onChange = (event) => {
const value = event.target.value;
// this will return C:\userName\pakainfo.ext
console.log(value);
const files = event.target.files;
//this will return an ARRAY of File object
console.log(files);
}
return (
<input type="file" onChange={onChange} />
)
duyệt tệp lấy đường dẫn đầy đủ bằng JavaScript
const onChange = (event) => {
const value = event.target.value;
// this will return C:\userName\pakainfo.ext
console.log(value);
const files = event.target.files;
console.log(files);
}
return (
<input type="file" onChange={onChange} />
)
làm thế nào để đặt tên cho đường dẫn tệp trong document.geteleementbyid?
document.getElementById("retreiveData").innerHTML = "<p>Message</p> <a href=message>" + key + "</a> <p>ok?</p>"
Làm thế nào để lấy tên tệp từ đường dẫn đầy đủ bằng JavaScript ?
<!DOCTYPE HTML>
<html>
<head>
<title>
How to get the file name from a full path using JavaScript - www.pakainfo.com
</title>
</head>
<body style = "text-align:center;">
<h1 style = "color:green;" >
GeeksForGeeks
</h1>
<p id = "PAKAINFO_UP" style =
"font-size: 15px; font-weight: bold;">
</p>
<button onclick = "PAKAINFO_Run()">
get File Name
</button>
<p id = "PAKAINFO_DOWN" style =
"color:green; font-size: 20px; font-weight: bold;">
</p>
<script>
var el_up = document.getElementById("PAKAINFO_UP");
var el_down = document.getElementById("PAKAINFO_DOWN");
var path = "Path = " +
"C:\\Documents\\folder\\img\\PAKAINFO.jpg";
el_up.innerHTML = path;
function PAKAINFO_Run() {
el_down.innerHTML = path.replace(/^.*[\\\/]/, '');
}
</script>
</body>
</html>
Làm thế nào để lấy tên tệp từ đường dẫn đầy đủ bằng JavaScript
- Bài đăng trên blog này ban đầu được xuất bản tại: https://www.pakainfo.com